diff --git a/.buildkite/build.sh b/.buildkite/build.sh new file mode 100755 index 000000000000..1287b2b0033a --- /dev/null +++ b/.buildkite/build.sh @@ -0,0 +1,84 @@ +#!/bin/bash +set -eu + +if [ -n "${KX_BUILD_DEBUG-}" ]; then + echo "Enabling script debugging..." + set -x +fi + +export TIMEFORMAT='🕑 %1lR' +export DEBEMAIL=support@koordinates.com +export DEBFULLNAME="Koordinates CI Builder" + +echo "Updating changelog..." + +DEB_BASE_VERSION=$(cat gdal/VERSION) +DEB_VERSION="${DEB_BASE_VERSION}+ci${BUILDKITE_BUILD_NUMBER}-$(git show -s --date=format:%Y%m%d --format=git%cd.%h)" +echo "Debian Package Version: ${DEB_VERSION}" + +if [ -n "${BUILDKITE_AGENT_ACCESS_TOKEN-}" ] ; then + buildkite-agent meta-data set deb-base-version "$DEB_BASE_VERSION" + buildkite-agent meta-data set deb-version "$DEB_VERSION" + + echo -e ":debian: Package Version: \`${DEB_VERSION}\`" \ + | buildkite-agent annotate --style info --context deb-version +fi + +time docker run \ + -v "$(pwd):/src" \ + -w "/src/gdal" \ + -e DEBEMAIL \ + -e DEBFULLNAME \ + "${ECR}/ci-tools:latest" \ + dch --distribution bionic --newversion "${DEB_VERSION}" "Koordinates CI build of ${BUILDKITE_COMMIT}: branch=${BUILDKITE_BRANCH} tag=${BUILDKITE_TAG-}" + +BUILD_CONTAINER="build-${BUILDKITE_JOB_ID}" + +echo "--- Building debian package ..." +# Uses a docker volume for ccache +time docker run \ + --name "${BUILD_CONTAINER}" \ + -v "$(pwd):/kx/source" \ + -v "ccache:/ccache" \ + -e CCACHE_DIR=/ccache \ + -w "/kx/source/gdal" \ + "${ECR}/bionicbuild:latest" \ + /kx/buildscripts/build_binary_package.sh -uc -us + +echo "--- Signing debian archives ..." +time docker run \ + -v "$(pwd):/src" \ + -e "GPG_KEY=${APT_GPG_KEY}" \ + -w "/src" \ + "${ECR}/ci-tools:latest" \ + sign-debs "/src/build-bionic/*.deb" + +echo "--- Running tests ..." +TEST_IMAGE="test-${BUILDKITE_JOB_ID}" +docker commit "${BUILD_CONTAINER}" "${TEST_IMAGE}" +docker rm "${BUILD_CONTAINER}" +R=0 +time docker run --rm -i \ + -v "$(pwd):/src" \ + -w "/src/autotest" \ + "${TEST_IMAGE}" \ + /bin/bash -exs << EOF || R=$? +DEBIAN_FRONTEND=noninteractive apt-get update -q +DEBIAN_FRONTEND=noninteractive apt-get install -y curl +curl --silent https://bootstrap.pypa.io/get-pip.py 'pip<19' | python - +pip install 'pytest<5' + +DEBIAN_FRONTEND=noninteractive dpkg -i ../build-bionic/{gdal-bin,gdal-data,libgdal20,python-gdal,python3-gdal}*.deb + +# skip known failures +rm gcore/rfc30.py +TRAVIS=YES TRAVIS_BRANCH=ubuntu_1804 pytest -v -k 'not (test_ogr_fgdb_13 or test_vsisync or test_vsis3_init or test_vsis3_1 or test_vsis3_cleanup or test_eedai_GOOGLE_APPLICATION_CREDENTIALS)' +EOF + +if [ $R -ne 0 ]; then + echo "^^^ +++" + echo "⚠️ Errors running GDAL tests ($R). But may be kinda expected. Check them and edit build.sh to skip?" +else + echo "--- ✅ GDAL tests passed!" +fi + diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml new file mode 100644 index 000000000000..7228b5196294 --- /dev/null +++ b/.buildkite/pipeline.yml @@ -0,0 +1,44 @@ +--- +steps: + - label: ':debian: Build & Package & Test' + command: ".buildkite/build.sh" + artifact_paths: + - "build-bionic/*" + + - block: "Release?" + prompt: "Tag & Release to archive? Check the test results first!" + + - label: ':git: Add git tag' + command: .buildkite/tag.sh + plugins: + docker#v1.4.0: + image: "${ECR}/ci-tools" + always-pull: true + workdir: /src + environment: + - GITHUB_TOKEN + - BUILDKITE_COMMIT + - BUILDKITE_BUILD_NUMBER + - BUILDKITE_BRANCH + + - label: ':debian: Publish deb' + command: + - > + aptly-upload + --aptly-url https://apt-repo.kx.gd + --retries 3 + --repo kx-builds-bionic + --series bionic + build-bionic/*.deb + retry: + automatic: true + plugins: + artifacts#v1.2.0: + download: "build-bionic/*.deb" + docker#v1.4.0: + image: "${ECR}/ci-tools" + always-pull: true + workdir: /src + environment: + - APTLY_UNAME + - APTLY_PASSWD diff --git a/.buildkite/tag.sh b/.buildkite/tag.sh new file mode 100755 index 000000000000..72c379f71251 --- /dev/null +++ b/.buildkite/tag.sh @@ -0,0 +1,27 @@ +#!/bin/bash +set -eu + +if [ -n "${KX_BUILD_DEBUG-}" ]; then + echo "Enabling script debugging..." + set -x +fi + +DEB_BASE_VERSION="$(buildkite-agent meta-data get deb-base-version)" +if [ -z "${DEB_BASE_VERSION}" ]; then + echo "Missing deb-base-version: ${DEB_BASE_VERSION}" + exit 2 +elif [ "${BUILDKITE_COMMIT}" = "HEAD" ]; then + echo "Invalid BUILDKITE_COMMIT: ${BUILDKITE_COMMIT}" + exit 2 +fi + +TAG="kx-release-${DEB_BASE_VERSION}+ci${BUILDKITE_BUILD_NUMBER}" +echo "Creating tag: ${TAG} for ${BUILDKITE_COMMIT} ..." + +hub release create \ + -t "${BUILDKITE_COMMIT}" \ + -m "CI: ${BUILDKITE_BRANCH}.${BUILDKITE_BUILD_NUMBER}" \ + "${TAG}" + +echo -e ":git: Git Tag: \`${TAG}\`" \ + | buildkite-agent annotate --style info --context git-tag diff --git a/.gitignore b/.gitignore index 7cc4f0125c8e..5337b45927d0 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,7 @@ __pycache__/ .env*/ .venv*/ + +# koordinates +/build-trusty/ +/build-bionic/ \ No newline at end of file diff --git a/Vagrantfile b/Vagrantfile index 5c185a2cbbc0..4c1565048a27 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -64,7 +64,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| ppaRepos = [ "ppa:openjdk-r/ppa", - "ppa:ubuntugis/ubuntugis-unstable", + "ppa:ubuntugis/ppa", + "ppa:ubuntugis/ubuntugis-testing", "ppa:miurahr/gdal-depends" ] diff --git a/autotest/cpp/test_ogr.cpp b/autotest/cpp/test_ogr.cpp index efb1ff4746a2..fc35d7478432 100644 --- a/autotest/cpp/test_ogr.cpp +++ b/autotest/cpp/test_ogr.cpp @@ -1470,4 +1470,76 @@ namespace tut strcmp("2001-02-03T04:05:06.789-03:00", pszDateTime) == 0); CPLFree(pszDateTime); } + + // Test OGRLinearRing::isPointOnRingBoundary() + template<> + template<> + void object::test<16>() + { + OGRPolygon oPoly; + const char* pszPoly = "POLYGON((10 9,11 10,10 11,9 10,10 9))"; + oPoly.importFromWkt(&pszPoly); + auto poRing = oPoly.getExteriorRing(); + + // On first vertex + { + OGRPoint p(10, 9); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + + // On second vertex + { + OGRPoint p(11, 10); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + + // Middle of first segment + { + OGRPoint p(10.5, 9.5); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + + // "Before" first segment + { + OGRPoint p(10-1, 9-1); + ensure(!poRing->isPointOnRingBoundary(&p, false)); + } + + // "After" first segment + { + OGRPoint p(11+1, 10+1); + ensure(!poRing->isPointOnRingBoundary(&p, false)); + } + + // On third vertex + { + OGRPoint p(10, 11); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + + // Middle of second segment + { + OGRPoint p(10.5, 10.5); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + + // On fourth vertex + { + OGRPoint p(9, 10); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + + // Middle of third segment + { + OGRPoint p(9.5, 10.5); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + + // Middle of fourth segment + { + OGRPoint p(9.5, 9.5); + ensure(poRing->isPointOnRingBoundary(&p, false)); + } + } + } // namespace tut diff --git a/autotest/cpp/testblockcachewrite.cpp b/autotest/cpp/testblockcachewrite.cpp index c2f742f29139..b3758d2d8829 100644 --- a/autotest/cpp/testblockcachewrite.cpp +++ b/autotest/cpp/testblockcachewrite.cpp @@ -76,30 +76,28 @@ class MyDataset: public GDALDataset } }; -static void thread_func(void* /* unused */ ) +static void thread_func1(void* /* unused */ ) { printf("begin thread\n"); GDALFlushCacheBlock(); printf("end of thread\n\n"); } -int main(int argc, char* argv[]) +static void test1() { CPLJoinableThread* hThread; + printf("Start test1\n"); printf("main thread %p\n", (void*)CPLGetPID()); - argc = GDALGeneralCmdLineProcessor( argc, &argv, 0 ); - - CPLSetConfigOption("GDAL_CACHEMAX", "0"); - CPLSetConfigOption("GDAL_DEBUG_BLOCK_CACHE", "ON"); + GDALSetCacheMax(0); MyDataset* poDS = new MyDataset(); char buf1[] = { 1 } ; CPL_IGNORE_RET_VAL(GDALRasterIO(GDALGetRasterBand(poDS, 1), GF_Write, 0, 0, 1, 1, buf1, 1, 1, GDT_Byte, 0, 0)); - hThread = CPLCreateJoinableThread(thread_func, nullptr); + hThread = CPLCreateJoinableThread(thread_func1, nullptr); CPLSleep(0.3); CPL_IGNORE_RET_VAL(GDALRasterIO(GDALGetRasterBand(poDS, 1), GF_Write, 1, 0, 1, 1, buf1, 1, 1, GDT_Byte, 0, 0)); GDALFlushCacheBlock(); @@ -107,6 +105,65 @@ int main(int argc, char* argv[]) CPLJoinThread(hThread); delete poDS; + printf("End test1\n"); +} + + +static void thread_func2(void* /* unused */) +{ + printf("begin thread %p\n", (void*)CPLGetPID()); + GDALDatasetH hDS = GDALOpen("data/byte.tif", GA_ReadOnly); + GByte c = 0; + CPL_IGNORE_RET_VAL(GDALDataset::FromHandle(hDS)->GetRasterBand(1)->RasterIO(GF_Read, 0,0,1,1,&c,1,1,GDT_Byte,0,0,nullptr)); + GDALClose(hDS); + printf("end of thread\n\n"); +} + +static void test2() +{ + printf("Start test2\n"); + printf("main thread %p\n", (void*)CPLGetPID()); + + CPLJoinableThread* hThread; + + CPLSetConfigOption("GDAL_RB_INTERNALIZE_SLEEP_AFTER_DETACH_BEFORE_WRITE", "0.5"); + GDALSetCacheMax(1000*1000); + + auto poDS = GetGDALDriverManager()->GetDriverByName("GTiff")->Create("/vsimem/foo.tif", 1, 1, 2, GDT_Byte, nullptr); + poDS->GetRasterBand(1)->Fill(0); + poDS->GetRasterBand(2)->Fill(0); + poDS->FlushCache(); + GDALSetCacheMax(0); + + poDS->GetRasterBand(1)->Fill(1); + hThread = CPLCreateJoinableThread(thread_func2, nullptr); + CPLSleep(0.2); + + GByte c = 0; + CPL_IGNORE_RET_VAL(poDS->GetRasterBand(1)->RasterIO(GF_Read,0,0,1,1,&c,1,1,GDT_Byte,0,0,nullptr)); + printf("%d\n", c); + assert(c == 1); + CPLJoinThread(hThread); + + CPLSetConfigOption("GDAL_RB_INTERNALIZE_SLEEP_AFTER_DETACH_BEFORE_WRITE", nullptr); + delete poDS; + VSIUnlink("/vsimem/foo.tif"); + printf("End test2\n"); +} + + +int main(int argc, char* argv[]) +{ + argc = GDALGeneralCmdLineProcessor( argc, &argv, 0 ); + + CPLSetConfigOption("GDAL_DEBUG_BLOCK_CACHE", "ON"); + GDALGetCacheMax(); + + GDALAllRegister(); + + test1(); + test2(); + GDALDestroyDriverManager(); CSLDestroy( argv ); diff --git a/autotest/cpp/testcopywords.cpp b/autotest/cpp/testcopywords.cpp index ef928edad542..15ad8caa57dc 100644 --- a/autotest/cpp/testcopywords.cpp +++ b/autotest/cpp/testcopywords.cpp @@ -630,7 +630,7 @@ int main(int /* argc */, char* /* argv */ []) memset(pIn, 0xff, 256); for(int i=0;i<17;i++) { - pIn[spacing*i] = (GByte)i; + pIn[spacing*i] = (GByte)(17-i); } memset(pOut, 0xff, 256); GDALCopyWords(pIn, GDT_Byte, spacing, @@ -638,21 +638,21 @@ int main(int /* argc */, char* /* argv */ []) 17); for(int i=0;i<17;i++) { - AssertRes(GDT_Byte, i, GDT_Byte, i, pOut[i], __LINE__); + AssertRes(GDT_Byte, 17-i, GDT_Byte, 17-i, pOut[i], __LINE__); } memset(pIn, 0xff, 256); memset(pOut, 0xff, 256); for(int i=0;i<17;i++) { - pIn[i] = (GByte)i; + pIn[i] = (GByte)(17-i); } GDALCopyWords(pIn, GDT_Byte, 1, pOut, GDT_Byte, spacing, 17); for(int i=0;i<17;i++) { - AssertRes(GDT_Byte, i, GDT_Byte, i, pOut[i*spacing], __LINE__); + AssertRes(GDT_Byte, 17-i, GDT_Byte, 17-i, pOut[i*spacing], __LINE__); for(int j=1;j + GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],AUTHORITY["EPSG","4326"]] + -1.5628130024270072e+02, 1.4534981708669393e-02, 0.0000000000000000e+00, 7.6404172905756070e+01, 0.0000000000000000e+00, -1.4534981708669393e-02 + + Area + + + 0 + Palette + + + + + + 512 + 128 + + 6.71089e+07 + NearestNeighbour + Byte + geos_vrtwarp.tif + + + 0.125 + + + -5434894.95475267898,1002.00865774377053,0,-5434894.96445174422,0,1002.00865774377053 + 5423.99999516018943,0.000997995368874063891,0,5424.00000483981148,0,0.000997995368874063891 + -156.281300242700723,0.0145349817086693929,0,76.4041729057560701,0,-0.0145349817086693929 + 10752.0809709369441,68.7995361840427933,0,5256.57165844142673,0,-68.7995361840427933 + + + PROJCS["unnamed",GEOGCS["unknown",DATUM["unnamed",SPHEROID["Spheroid",6378137,298.2572221]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]]],PROJECTION["Geostationary_Satellite"],PARAMETER["central_meridian",-75],PARAMETER["satellite_height",35786023],PARAMETER["false_easting",0],PARAMETER["false_northing",0],UNIT["metre",1,AUTHORITY["EPSG","9001"]],AXIS["Easting",EAST],AXIS["Northing",NORTH],EXTENSION["PROJ4","+proj=geos +lon_0=-75 +h=35786023 +x_0=0 +y_0=0 +ellps=GRS80 +units=m +no_defs +sweep=x"]] + GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9122"]],AXIS["Latitude",NORTH],AXIS["Longitude",EAST],AUTHORITY["EPSG","4326"]] + + + + + + + + + 0 + 0 + 0 + 0 + + + + diff --git a/autotest/gdrivers/data/grib/template_4_12_spread.grb2 b/autotest/gdrivers/data/grib/template_4_12_spread.grb2 new file mode 100644 index 000000000000..063b4a6dc6b1 Binary files /dev/null and b/autotest/gdrivers/data/grib/template_4_12_spread.grb2 differ diff --git a/autotest/gdrivers/data/grib/template_4_48.grb2 b/autotest/gdrivers/data/grib/template_4_48.grb2 new file mode 100644 index 000000000000..06190806003f Binary files /dev/null and b/autotest/gdrivers/data/grib/template_4_48.grb2 differ diff --git a/autotest/gdrivers/grib.py b/autotest/gdrivers/grib.py index 9f5f05916eeb..1c0a1a12bd3c 100755 --- a/autotest/gdrivers/grib.py +++ b/autotest/gdrivers/grib.py @@ -230,7 +230,8 @@ def test_grib_grib2_read_template_4_32(): # First band extracted from http://nomads.ncep.noaa.gov/pub/data/nccf/com/hur/prod/hwrf.2017102006/twenty-se27w.2017102006.hwrfsat.core.0p02.f000.grb2 ds = gdal.Open('data/grib/twenty-se27w.2017102006.hwrfsat.core.0p02.f000_truncated.grb2') cs = ds.GetRasterBand(1).Checksum() - assert cs == 19911, 'Could not open file' + assert cs == 48230, 'Could not open file' + assert ds.GetRasterBand(1).ComputeRasterMinMax() == pytest.approx((-9.765,2.415), 1e-3) # Reasonable range for Celcius md = ds.GetRasterBand(1).GetMetadata() expected_md = {'GRIB_REF_TIME': ' 1508479200 sec UTC', 'GRIB_VALID_TIME': ' 1508479200 sec UTC', 'GRIB_FORECAST_SECONDS': '0 sec', 'GRIB_UNIT': '[C]', 'GRIB_PDS_TEMPLATE_NUMBERS': '5 7 2 0 0 0 0 0 1 0 0 0 0 1 0 31 1 29 67 140 2 0 0 238 217', 'GRIB_PDS_PDTN': '32', 'GRIB_COMMENT': 'Brightness Temperature [C]', 'GRIB_SHORT_NAME': '0 undefined', 'GRIB_ELEMENT': 'BRTEMP', 'GRIB_PDS_TEMPLATE_ASSEMBLED_VALUES': '5 7 2 0 0 0 0 1 0 1 31 285 17292 2 61145'} for k in expected_md: @@ -1265,6 +1266,41 @@ def test_grib_online_grib2_jpeg2000_single_line(): for k in expected_md: assert k in md and md[k] == expected_md[k], 'Did not get expected metadata' - +############################################################################### +# Template 4.12 with Derived forecast = spread. Do not do unit conversion ! + +def test_grib_grib2_derived_forecast_spread(): + + if gdaltest.grib_drv is None: + pytest.skip() + + ds = gdal.Open('data/grib/template_4_12_spread.grb2') + band = ds.GetRasterBand(1) + assert band.GetMetadataItem('GRIB_UNIT') == '[spread]' + assert band.ComputeRasterMinMax() == (0.24296024441719055, 0.24296024441719055) + + out_ds = gdaltest.grib_drv.CreateCopy('/vsimem/out.grb2', ds) + band = out_ds.GetRasterBand(1) + assert band.GetMetadataItem('GRIB_UNIT') == '[spread]' + assert band.ComputeRasterMinMax() == (0.24296024441719055, 0.24296024441719055) + out_ds = None + + gdal.Unlink('/vsimem/out.grb2') + + + +############################################################################### +# Template 4.48 with Optical Properties of Aerosol + +def test_grib_grib2_template_4_48(): + + if gdaltest.grib_drv is None: + pytest.skip() + + ds = gdal.Open('data/grib/template_4_48.grb2') + band = ds.GetRasterBand(1) + assert band.GetMetadataItem('GRIB_UNIT') == '[1/kg]' + assert band.GetMetadataItem('GRIB_ELEMENT') == 'ASNCON' + assert band.GetMetadataItem('GRIB_SHORT_NAME') == '0-EATM' diff --git a/autotest/gdrivers/kmlsuperoverlay.py b/autotest/gdrivers/kmlsuperoverlay.py index edab1107362e..7bc1f5ce1b9c 100755 --- a/autotest/gdrivers/kmlsuperoverlay.py +++ b/autotest/gdrivers/kmlsuperoverlay.py @@ -37,12 +37,21 @@ import gdaltest import pytest + +@pytest.fixture(autouse=True) +def nuke_tmpdir(): + for f in os.listdir('tmp'): + f = os.path.join('tmp', f) + if os.path.isdir(f): + shutil.rmtree(f) + else: + os.unlink(f) + ############################################################################### # Test CreateCopy() to a KMZ file def test_kmlsuperoverlay_1(): - tst = gdaltest.GDALTest('KMLSUPEROVERLAY', 'small_world.tif', 1, 30111, options=['FORMAT=PNG']) return tst.testCreateCopy(new_filename='/vsimem/kmlout.kmz') @@ -60,34 +69,23 @@ def test_kmlsuperoverlay_2(): ############################################################################### # Test CreateCopy() to a KML file - def test_kmlsuperoverlay_3(): - src_ds = gdal.Open('data/utm.tif') ds = gdal.GetDriverByName('KMLSUPEROVERLAY').CreateCopy('tmp/tmp.kml', src_ds) del ds src_ds = None - filelist = ['tmp/0/0/0.jpg', - 'tmp/0/0/0.kml', - 'tmp/1/0/0.jpg', - 'tmp/1/0/0.kml', - 'tmp/1/0/1.jpg', - 'tmp/1/0/1.kml', - 'tmp/1/1/0.jpg', - 'tmp/1/1/0.kml', - 'tmp/1/1/1.jpg', - 'tmp/1/1/1.kml', - 'tmp/tmp.kml'] + # Kx: modified from upstream tests + # (since we've changed the kmlsuperoverlay target tile size to 1024px, we have less files) + filelist = [ 'tmp/0/0/0.jpg', + 'tmp/0/0/0.kml', + 'tmp/tmp.kml' ] for filename in filelist: try: os.remove(filename) except OSError: pytest.fail("Missing file: %s" % filename) - shutil.rmtree('tmp/0') - shutil.rmtree('tmp/1') - ############################################################################### # Test overviews @@ -144,13 +142,7 @@ def test_kmlsuperoverlay_4(): ds = gdal.GetDriverByName('KMLSUPEROVERLAY').CreateCopy('/vsimem/kmlsuperoverlay_4.kmz', src_ds, options=['FORMAT=PNG', 'NAME=myname', 'DESCRIPTION=mydescription', 'ALTITUDE=10', 'ALTITUDEMODE=absolute']) assert ds.GetMetadataItem('NAME') == 'myname' assert ds.GetMetadataItem('DESCRIPTION') == 'mydescription' - if ds.GetRasterBand(1).GetOverviewCount() != 1: - ds = None - src_ds = None - gdal.Unlink("/vsimem/src.vrt") - gdal.Unlink("/vsimem/kmlsuperoverlay_4.kmz") - pytest.fail() - if ds.GetRasterBand(1).GetOverview(0).Checksum() != 30111: + if ds.GetRasterBand(1).GetOverviewCount() != 0: ds = None src_ds = None gdal.Unlink("/vsimem/src.vrt") @@ -186,7 +178,6 @@ def test_kmlsuperoverlay_4(): def test_kmlsuperoverlay_5(): - try: from xml.etree import ElementTree except ImportError: @@ -228,10 +219,6 @@ def test_kmlsuperoverlay_5(): files = [ 'tmp/tmp.kml', 'tmp/0/0/0.kml', - 'tmp/1/0/0.kml', - 'tmp/1/0/1.kml', - 'tmp/1/1/0.kml', - 'tmp/1/1/1.kml', ] for f in files: @@ -243,16 +230,11 @@ def test_kmlsuperoverlay_5(): assert float(east) >= float(west), \ ('East is less than west in LatLonAltBox %s, (%s < %s)' % (f, east, west)) - shutil.rmtree('tmp/0') - shutil.rmtree('tmp/1') - os.remove('tmp/tmp.kml') ############################################################################### # Test raster KML with alternate structure (such as http://opentopo.sdsc.edu/files/Haiti/NGA_Haiti_LiDAR2.kmz)) - def test_kmlsuperoverlay_6(): - ds = gdal.Open('data/kmlimage.kmz') assert ds.GetProjectionRef().find('WGS_1984') >= 0 got_gt = ds.GetGeoTransform() @@ -272,7 +254,6 @@ def test_kmlsuperoverlay_6(): def test_kmlsuperoverlay_7(): - ds = gdal.Open('data/small_world.kml') assert ds.GetProjectionRef().find('WGS_1984') >= 0 got_gt = ds.GetGeoTransform() @@ -306,9 +287,8 @@ def test_kmlsuperoverlay_single_overlay_document_folder_pct(): def test_kmlsuperoverlay_8(): - # a large raster with actual data on each end and blank space in between - src_ds = gdal.Open(""" + src_ds = gdal.Open(""" GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS 84",6378137,298.257223563,AUTHORITY["EPSG","7030"]],TOWGS84[0,0,0,0,0,0,0],AUTHORITY["EPSG","6326"]],PRIMEM["Greenwich",0,AUTHORITY["EPSG","8901"]],UNIT["degree",0.0174532925199433,AUTHORITY["EPSG","9108"]],AUTHORITY["EPSG","4326"]] 0, 0.01, 0, 0, 0, 0.01 @@ -318,14 +298,14 @@ def test_kmlsuperoverlay_8(): 1 - + data/utm.tif 1 - + @@ -335,14 +315,14 @@ def test_kmlsuperoverlay_8(): 1 - + data/utm.tif 1 - + @@ -352,14 +332,14 @@ def test_kmlsuperoverlay_8(): 1 - + data/utm.tif 1 - + @@ -369,7 +349,7 @@ def test_kmlsuperoverlay_8(): 1 - + 255 0 @@ -378,7 +358,7 @@ def test_kmlsuperoverlay_8(): 1 - + 255 0 @@ -389,15 +369,11 @@ def test_kmlsuperoverlay_8(): src_ds = None assert set(os.listdir('tmp/0/0')) == set(('0.kml', '0.png')) - assert (set(os.listdir('tmp/3/1')) == set(('0.jpg', '0.kml', '1.jpg', '1.kml', '2.jpg', '2.kml', '3.jpg', '3.kml', - '4.jpg', '4.kml', '5.jpg', '5.kml', '6.jpg', '6.kml', '7.jpg', '7.kml',))) - assert set(os.listdir('tmp/3/2')) == set() - - shutil.rmtree('tmp/0') - shutil.rmtree('tmp/1') - shutil.rmtree('tmp/2') - shutil.rmtree('tmp/3') - os.remove('tmp/tmp.kml') + # Kx: modified from upstream tests + # (since we've changed the kmlsuperoverlay target tile size to 1024px, we have less files) + assert set(os.listdir('tmp/2/0')) == set(('0.jpg', '0.kml', '1.jpg', '1.kml', '2.jpg', '2.kml', '3.jpg', '3.kml',)) + # dir should be empty - 2/3 is entirely transparent so we skip generating files. + assert set(os.listdir('tmp/2/3')) == set() ############################################################################### # Cleanup diff --git a/autotest/gdrivers/pds.py b/autotest/gdrivers/pds.py index 01fed06600f0..e07ae7fbd715 100755 --- a/autotest/gdrivers/pds.py +++ b/autotest/gdrivers/pds.py @@ -315,4 +315,61 @@ def test_pds_band_storage_type_line_interleaved(): return tst.testOpen() +############################################################################### + +def test_pds_sharp_on_continuing_line(): + + gdal.FileFromMemBuffer('/vsimem/test', + """PDS_VERSION_ID = "PDS3" + +NOTE = (#9933FF, + #FFFF33) + +^IMAGE = 1 +OBJECT = IMAGE + BANDS = 1 + BAND_STORAGE_TYPE = "BAND SEQUENTIAL" + LINES = 1 + LINE_SAMPLES = 1 + SAMPLE_BITS = 8 + +END_OBJECT = IMAGE + +END +""") + + ds = gdal.Open('/vsimem/test') + + assert ds.GetMetadataItem('NOTE') == '(#9933FF,#FFFF33)' + + gdal.Unlink('/vsimem/test') + + +############################################################################### + +def test_pds_sharp_comma_continuing_line(): + + gdal.FileFromMemBuffer('/vsimem/test', + """PDS_VERSION_ID = "PDS3" + +NOTE = ("a" + ,"b") + +^IMAGE = 1 +OBJECT = IMAGE + BANDS = 1 + BAND_STORAGE_TYPE = "BAND SEQUENTIAL" + LINES = 1 + LINE_SAMPLES = 1 + SAMPLE_BITS = 8 + +END_OBJECT = IMAGE + +END +""") + + ds = gdal.Open('/vsimem/test') + + assert ds.GetMetadataItem('NOTE') == '("a","b")' + gdal.Unlink('/vsimem/test') diff --git a/autotest/gdrivers/vrtwarp.py b/autotest/gdrivers/vrtwarp.py index 793cbbac5785..ca47fe48951f 100755 --- a/autotest/gdrivers/vrtwarp.py +++ b/autotest/gdrivers/vrtwarp.py @@ -412,8 +412,11 @@ def test_vrtwarp_read_vrt_of_warped_vrt(): assert cs == 4672 ############################################################################### -# Test different nodata values on bands and partial blocks (#6581) - +# Test reading a warped VRT that has blocks pointing to spce. +# https://github.com/OSGeo/gdal/issues/1985 +def test_vrtwarp_read_blocks_in_space(): + ds = gdal.Open('data/geos_vrtwarp.vrt') + assert ds.GetRasterBand(1).ReadRaster(0, 0, 512, 512) diff --git a/autotest/ogr/data/spline_with_very_close_neg_to_zero_knot.dxf b/autotest/ogr/data/spline_with_very_close_neg_to_zero_knot.dxf new file mode 100644 index 000000000000..88af30206647 --- /dev/null +++ b/autotest/ogr/data/spline_with_very_close_neg_to_zero_knot.dxf @@ -0,0 +1,86 @@ + 0 +SECTION + 2 +ENTITIES + 0 +SPLINE + 5 +3BF +330 +2 +100 +AcDbEntity + 8 +SHOP +100 +AcDbSpline +210 +0.0 +220 +0.0 +230 +1.0 + 70 + 8 + 71 + 3 + 72 + 9 + 73 + 5 + 74 + 0 + 42 +0.000000001 + 43 +0.0000000001 + 40 +-0.0000000000003402 + 40 +0.0 + 40 +0.0 + 40 +0.0 + 40 +4.16829281711858 + 40 +5.04540990028174 + 40 +5.04540990028174 + 40 +5.04540990028174 + 40 +5.04540990028174 + 10 +166.6530957511469 + 20 +78.40469559017359 + 30 +0.0 + 10 +165.4868972520812 + 20 +79.24271654461697 + 30 +0.0 + 10 +164.0753002959568 + 20 +80.25707887607907 + 30 +0.0 + 10 +163.173127540998 + 20 +81.58610358109488 + 30 +0.0 + 10 +163.0306017054786 + 20 +81.82569418640966 + 30 +0.0 + 0 +ENDSEC diff --git a/autotest/ogr/ogr_cad.py b/autotest/ogr/ogr_cad.py index 1f183154b9b1..bc9f31b8a3b4 100755 --- a/autotest/ogr/ogr_cad.py +++ b/autotest/ogr/ogr_cad.py @@ -10,7 +10,7 @@ # The MIT License (MIT) # # Copyright (c) 2016 Alexandr Borzykh -# Copyright (c) 2016, NextGIS +# Copyright (c) 2016-2019, NextGIS # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -108,6 +108,8 @@ def test_ogr_cad_2(): assert geom.GetGeometryType() == ogr.wkbLineString25D, \ 'did not get expected geometry type.' + assert geom.GetPointCount() > 2, 'cad geometry is invalid' + gdaltest.cad_ds = None ############################################################################### diff --git a/autotest/ogr/ogr_dxf.py b/autotest/ogr/ogr_dxf.py index 2be697036d9d..820e5a787181 100644 --- a/autotest/ogr/ogr_dxf.py +++ b/autotest/ogr/ogr_dxf.py @@ -3483,6 +3483,23 @@ def test_ogr_dxf_write_geometry_collection_of_unsupported_type(): ds = None gdal.Unlink(tmpfile) + +############################################################################### +# Test fix for https://github.com/OSGeo/gdal/issues/1969 +# with a SPLINE whose first knot is a very close to zero negative value. + +def test_ogr_dxf_very_close_neg_to_zero_knot(): + + ds = ogr.Open('data/spline_with_very_close_neg_to_zero_knot.dxf') + lyr = ds.GetLayer(0) + + f = lyr.GetNextFeature() + g = f.GetGeometryRef() + extent = g.GetEnvelope() + assert extent == pytest.approx((163.0306017054786, 166.6530957511469, + 78.40469559017359, 81.82569418640966), abs=1e-5) + + ############################################################################### # cleanup diff --git a/autotest/ogr/ogr_elasticsearch.py b/autotest/ogr/ogr_elasticsearch.py index 23c90926d345..9158990e5628 100755 --- a/autotest/ogr/ogr_elasticsearch.py +++ b/autotest/ogr/ogr_elasticsearch.py @@ -1584,6 +1584,27 @@ def test_ogr_elasticsearch_10(): f = lyr.GetNextFeature() assert f is not None + lyr.SetAttributeFilter("CAST(text_field AS CHARACTER) = 'foo_cast'") + gdal.FileFromMemBuffer("""/vsimem/fakeelasticsearch/a_layer/FeatureCollection/_search?scroll=1m&size=100&POSTFIELDS={ "query": { "constant_score" : { "filter": { "match": { "properties.text_field": "foo_cast" } } } } }""", + """{ +"_scroll_id": "my_scrollid", + "hits": + { + "hits":[ + { + "_id": "my_id", + "_source": { + "type": "Feature", + "properties": { + "text_field": "foo_cast" + } + } + }] + } +}""") + f = lyr.GetNextFeature() + assert f is not None + lyr.SetAttributeFilter("text_field_with_raw = 'foo'") gdal.FileFromMemBuffer("""/vsimem/fakeelasticsearch/a_layer/FeatureCollection/_search?scroll=1m&size=100&POSTFIELDS={ "query": { "constant_score" : { "filter": { "term": { "properties.text_field_with_raw.raw": "foo" } } } } }""", """{ diff --git a/autotest/ogr/ogr_geom.py b/autotest/ogr/ogr_geom.py index 281da6586b64..e3310db9d833 100755 --- a/autotest/ogr/ogr_geom.py +++ b/autotest/ogr/ogr_geom.py @@ -3272,8 +3272,10 @@ def test_ogr_geom_create_from_wkt_polyhedrasurface(): assert g.ExportToWkt() == 'POLYHEDRALSURFACE Z (((0 0 0,0 0 1,0 1 1,0 1 0,0 0 0)))' ############################################################################### -# cleanup -def test_ogr_geom_cleanup(): - pass +def test_ogr_geom_force_multipolygon_z_to_compound_curve(): + + g = ogr.CreateGeometryFromWkt('MULTIPOLYGON Z (((0 0 0,0 1 0,1 1 0,0 0 0)))') + g = ogr.ForceTo(g, ogr.wkbCompoundCurve) + assert g.ExportToIsoWkt() == 'COMPOUNDCURVE Z ((0 0 0,0 1 0,1 1 0,0 0 0))' diff --git a/autotest/ogr/ogr_gft.py b/autotest/ogr/ogr_gft.py deleted file mode 100755 index e050a0d0f61a..000000000000 --- a/autotest/ogr/ogr_gft.py +++ /dev/null @@ -1,289 +0,0 @@ -#!/usr/bin/env pytest -# -*- coding: utf-8 -*- -############################################################################### -# $Id$ -# -# Project: GDAL/OGR Test Suite -# Purpose: GFT driver testing. -# Author: Even Rouault -# -############################################################################### -# Copyright (c) 2011-2012, Even Rouault -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# the rights to use, copy, modify, merge, publish, distribute, sublicense, -# and/or sell copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included -# in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -# DEALINGS IN THE SOFTWARE. -############################################################################### - -import os - - -import gdaltest -import ogrtest -from osgeo import gdal -from osgeo import ogr -import pytest - -############################################################################### -# Test if driver is available - - -def test_ogr_gft_init(): - - ogrtest.gft_drv = None - - ogrtest.gft_drv = ogr.GetDriverByName('GFT') - - if ogrtest.gft_drv is None: - pytest.skip() - - if gdaltest.gdalurlopen('http://www.google.com') is None: - ogrtest.gft_drv = None - pytest.skip('cannot open http://www.google.com') - - ogrtest.gft_refresh = '1/woRTxgfN8dLUpRhnOL-BXG-f7VxzXKy_3D5eizH8bS8' - -############################################################################### -# Read test on Wikileaks Afgan War Diary 2004-2010 table. - - -def test_ogr_gft_read(): - if ogrtest.gft_drv is None: - pytest.skip() - - table_id = '15eIgEVTUNlC649ODphJVHXeb4nsOb49WJUlnhw' - - old_auth = gdal.GetConfigOption('GFT_AUTH', None) - old_access = gdal.GetConfigOption('GFT_ACCESS_TOKEN', None) - old_refresh = gdal.GetConfigOption('GFT_REFRESH_TOKEN', None) - gdal.SetConfigOption('GFT_AUTH', None) - gdal.SetConfigOption('GFT_ACCESS_TOKEN', None) - gdal.SetConfigOption('GFT_REFRESH_TOKEN', None) - ds = ogr.Open('GFT:tables=' + table_id) - gdal.SetConfigOption('GFT_AUTH', old_auth) - gdal.SetConfigOption('GFT_ACCESS_TOKEN', old_access) - gdal.SetConfigOption('GFT_REFRESH_TOKEN', old_refresh) - assert ds is not None - - lyr = ds.GetLayer(0) - assert lyr is not None - - lyr.SetSpatialFilterRect(67, 31.5, 67.5, 32) - lyr.SetAttributeFilter("'Attack on' = 'ENEMY'") - - count = lyr.GetFeatureCount() - if count == 0: - print(count) - if gdaltest.skip_on_travis() or gdal.GetConfigOption('APPVEYOR') is not None: - ogrtest.gft_drv = None - pytest.skip() - pytest.fail('did not get expected feature count') - - sql_lyr = ds.ExecuteSQL("SELECT Latitude, Longitude FROM " + table_id + " WHERE ST_INTERSECTS('Latitude', RECTANGLE(LATLNG(31.5,67.0), LATLNG(32.0,67.5))) AND 'Attack on' = 'ENEMY'") - assert sql_lyr is not None, 'SQL request failed' - sql_lyr_count = sql_lyr.GetFeatureCount() - ds.ReleaseResultSet(sql_lyr) - - assert sql_lyr_count == count, \ - ('did not get expected feature count. Got %d, expected %d' % (sql_lyr_count, count)) - -############################################################################### -# Write test - - -def test_ogr_gft_write(): - if ogrtest.gft_drv is None: - pytest.skip() - - if ogrtest.gft_refresh is None: - ogrtest.gft_can_write = False - pytest.skip() - - ds = ogr.Open('GFT:refresh=%s' % ogrtest.gft_refresh, update=1) - if ds is None: - ogrtest.gft_can_write = False - pytest.skip() - ogrtest.gft_can_write = True - - import random - ogrtest.gft_rand_val = random.randint(0, 2147000000) - table_name = "test_%d" % ogrtest.gft_rand_val - - lyr = ds.CreateLayer(table_name) - lyr.CreateField(ogr.FieldDefn('strcol', ogr.OFTString)) - lyr.CreateField(ogr.FieldDefn('numcol', ogr.OFTReal)) - - feat = ogr.Feature(lyr.GetLayerDefn()) - - feat.SetField('strcol', 'foo') - feat.SetField('numcol', '3.45') - expected_wkt = "POLYGON ((0 0,0 1,1 1,1 0),(0.25 0.25,0.25 0.75,0.75 0.75,0.75 0.25))" - geom = ogr.CreateGeometryFromWkt(expected_wkt) - feat.SetGeometry(geom) - assert lyr.CreateFeature(feat) == 0, 'CreateFeature() failed' - - fid = feat.GetFID() - feat.SetField('strcol', 'bar') - assert lyr.SetFeature(feat) == 0, 'SetFeature() failed' - - lyr.ResetReading() - feat = lyr.GetNextFeature() - if feat.GetFieldAsString('strcol') != 'bar': - feat.DumpReadable() - pytest.fail('GetNextFeature() did not get expected feature') - - feat = lyr.GetFeature(fid) - if feat.GetFieldAsString('strcol') != 'bar': - feat.DumpReadable() - pytest.fail('GetFeature() did not get expected feature') - got_wkt = feat.GetGeometryRef().ExportToWkt() - assert got_wkt == expected_wkt, 'did not get expected geometry' - - assert lyr.GetFeatureCount() == 1, \ - 'GetFeatureCount() did not returned expected value' - - assert lyr.DeleteFeature(feat.GetFID()) == 0, 'DeleteFeature() failed' - - ds.ExecuteSQL('DELLAYER:%s' % table_name) - - ds = None - -############################################################################### -# ogr2ogr test to create a non-spatial GFT table - - -def test_ogr_gft_ogr2ogr_non_spatial(): - if ogrtest.gft_drv is None: - pytest.skip() - - if not ogrtest.gft_can_write: - pytest.skip() - - import test_cli_utilities - if test_cli_utilities.get_ogr2ogr_path() is None: - pytest.skip() - - layer_name = 'no_geometry_table_%d' % ogrtest.gft_rand_val - - f = open('tmp/no_geometry_table.csv', 'wt') - f.write('foo,bar\n') - f.write('"baz","foo"\n') - f.write('"baz2","foo2"\n') - f.write('"baz\'3","foo3"\n') - f.close() - gdaltest.runexternal(test_cli_utilities.get_ogr2ogr_path() + ' -f GFT "GFT:refresh=' + ogrtest.gft_refresh + '" tmp/no_geometry_table.csv -nln ' + layer_name + ' -overwrite') - - os.unlink('tmp/no_geometry_table.csv') - - ds = ogr.Open('GFT:refresh=%s' % ogrtest.gft_refresh, update=1) - lyr = ds.GetLayerByName(layer_name) - if lyr.GetLayerDefn().GetFieldCount() != 2: - ds.ExecuteSQL('DELLAYER:' + layer_name) - pytest.fail('did not get expected field count') - - if lyr.GetGeomType() != ogr.wkbNone: - ds.ExecuteSQL('DELLAYER:' + layer_name) - pytest.fail('did not get expected layer geometry type') - - if lyr.GetFeatureCount() != 3: - ds.ExecuteSQL('DELLAYER:' + layer_name) - pytest.fail('did not get expected feature count') - - ds.ExecuteSQL('DELLAYER:' + layer_name) - - ds = None - -############################################################################### -# ogr2ogr test to create a spatial GFT table - - -def test_ogr_gft_ogr2ogr_spatial(): - if ogrtest.gft_drv is None: - pytest.skip() - - if not ogrtest.gft_can_write: - pytest.skip() - - import test_cli_utilities - if test_cli_utilities.get_ogr2ogr_path() is None: - pytest.skip() - - layer_name = 'geometry_table_%d' % ogrtest.gft_rand_val - copied_layer_name = 'copied_geometry_table_%d' % ogrtest.gft_rand_val - - f = open('tmp/geometry_table.csv', 'wt') - f.write('foo,bar,WKT\n') - f.write('"baz",2,"POINT (0 1)"\n') - f.write('"baz2",4,"POINT (2 3)"\n') - f.write('"baz\'3",6,"POINT (4 5)"\n') - f.close() - f = open('tmp/geometry_table.csvt', 'wt') - f.write('String,Integer,String\n') - f.close() - - # Create a first table - gdaltest.runexternal(test_cli_utilities.get_ogr2ogr_path() + ' -f GFT "GFT:refresh=' + ogrtest.gft_refresh + '" tmp/geometry_table.csv -nln ' + layer_name + ' -select foo,bar -overwrite') - - # Test round-tripping - gdaltest.runexternal(test_cli_utilities.get_ogr2ogr_path() + ' -f GFT "GFT:refresh=' + ogrtest.gft_refresh + '" "GFT:refresh=' + ogrtest.gft_refresh + '" ' + layer_name + ' -nln ' + copied_layer_name + ' -overwrite') - - os.unlink('tmp/geometry_table.csv') - os.unlink('tmp/geometry_table.csvt') - - ds = ogr.Open('GFT:refresh=%s' % ogrtest.gft_refresh, update=1) - - for name in [layer_name, copied_layer_name]: - lyr = ds.GetLayerByName(name) - - if lyr.GetGeometryColumn() != 'geometry': - ds.ExecuteSQL('DELLAYER:' + layer_name) - ds.ExecuteSQL('DELLAYER:' + copied_layer_name) - pytest.fail('layer %s: did not get expected geometry column' % name) - - if lyr.GetLayerDefn().GetFieldCount() != 3: - ds.ExecuteSQL('DELLAYER:' + layer_name) - ds.ExecuteSQL('DELLAYER:' + copied_layer_name) - pytest.fail('layer %s: did not get expected field count' % name) - - if lyr.GetGeomType() != ogr.wkbUnknown: - ds.ExecuteSQL('DELLAYER:' + layer_name) - ds.ExecuteSQL('DELLAYER:' + copied_layer_name) - pytest.fail('layer %s: did not get expected layer geometry type' % name) - - if lyr.GetFeatureCount() != 3: - ds.ExecuteSQL('DELLAYER:' + layer_name) - ds.ExecuteSQL('DELLAYER:' + copied_layer_name) - pytest.fail('layer %s: did not get expected feature count' % name) - - feat = lyr.GetNextFeature() - if feat.GetGeometryRef().ExportToWkt() != "POINT (0 1)": - ds.ExecuteSQL('DELLAYER:' + layer_name) - ds.ExecuteSQL('DELLAYER:' + copied_layer_name) - pytest.fail('layer %s: did not get expected geometry' % name) - - if feat.GetFieldAsInteger('bar') != 2: - ds.ExecuteSQL('DELLAYER:' + layer_name) - ds.ExecuteSQL('DELLAYER:' + copied_layer_name) - pytest.fail('layer %s: did not get expected field value' % name) - - ds.ExecuteSQL('DELLAYER:' + layer_name) - ds.ExecuteSQL('DELLAYER:' + copied_layer_name) - - ds = None - - - diff --git a/autotest/ogr/ogr_sql_sqlite.py b/autotest/ogr/ogr_sql_sqlite.py index 90c51ae3e74c..c5294a099bf6 100755 --- a/autotest/ogr/ogr_sql_sqlite.py +++ b/autotest/ogr/ogr_sql_sqlite.py @@ -380,10 +380,10 @@ def test_ogr_sql_sqlite_2(): ds.ReleaseResultSet(sql_lyr) ############################################################################### -# Test that involves a join +# Test that involves a left join -def test_ogr_sql_sqlite_3(): +def test_ogr_sql_sqlite_left_join(): ds = ogr.Open('data') @@ -405,6 +405,48 @@ def test_ogr_sql_sqlite_3(): ds = None +############################################################################### +# Test that involves a join on layers without fast feature count + + +def test_ogr_sql_sqlite_join_layers_without_fast_feature_count(): + + gdal.FileFromMemBuffer('/vsimem/tblmain.csv', """id,attr1 +1,one +2,two +3,three +""") + + gdal.FileFromMemBuffer('/vsimem/tblaux.csv', """id,attr2 +1,ipsum +2,lorem +3,amet +""") + + ds = ogr.Open('/vsimem/tblmain.csv') + sql_lyr = ds.ExecuteSQL("SELECT tblmain.id, tblmain.attr1, tblaux.attr2 FROM tblmain JOIN '/vsimem/tblaux.csv'.tblaux AS tblaux USING (id) ORDER BY id", dialect='SQLite') + count = sql_lyr.GetFeatureCount() + sql_lyr.ResetReading() + f = sql_lyr.GetNextFeature() + assert f['id'] == '1' + assert f['attr1'] == 'one' + assert f['attr2'] == 'ipsum' + f = sql_lyr.GetNextFeature() + assert f['id'] == '2' + assert f['attr1'] == 'two' + assert f['attr2'] == 'lorem' + f = sql_lyr.GetNextFeature() + assert f['id'] == '3' + assert f['attr1'] == 'three' + assert f['attr2'] == 'amet' + ds.ReleaseResultSet(sql_lyr) + ds = None + + gdal.Unlink('/vsimem/tblmain.csv') + gdal.Unlink('/vsimem/tblaux.csv') + + assert count == 3 + ############################################################################### # Test that involves a self-join (to check that we can open twice the same table) diff --git a/autotest/pyscripts/test_gdal_calc.py b/autotest/pyscripts/test_gdal_calc.py index b34f9227f3aa..5e3430d5576d 100755 --- a/autotest/pyscripts/test_gdal_calc.py +++ b/autotest/pyscripts/test_gdal_calc.py @@ -306,8 +306,28 @@ def test_gdal_calc_py_7(): ds3 = None ds4 = None -def test_gdal_calc_py_cleanup(): +############################################################################### +# test calc results are in range of the output data type, not the input one. + +def test_gdal_calc_py_8(): + if gdalnumeric_not_available: + pytest.skip() + script_path = test_py_scripts.get_py_script('gdal_calc') + if script_path is None: + pytest.skip() + + # calc returns -1. that' in range of Int16, but not in range of Byte. + test_py_scripts.run_py_script(script_path, 'gdal_calc', '-A tmp/test_gdal_calc_py.tif --A_band 1 --calc=-1 --type=Int16 --overwrite --outfile tmp/test_gdal_calc_py_8_1.tif') + + ds1 = gdal.Open('tmp/test_gdal_calc_py_8_1.tif') + + assert ds1 is not None + assert ds1.GetRasterBand(1).Checksum() == 41236 + ds1 = None + + +def test_gdal_calc_py_cleanup(): lst = ['tmp/test_gdal_calc_py.tif', 'tmp/test_gdal_calc_py_1_1.tif', 'tmp/test_gdal_calc_py_1_2.tif', diff --git a/gdal/GDALmake.opt.in b/gdal/GDALmake.opt.in index 80f0dacd9071..3e53767bf330 100644 --- a/gdal/GDALmake.opt.in +++ b/gdal/GDALmake.opt.in @@ -123,7 +123,7 @@ GDAL_INCLUDE = -I$(GDAL_ROOT)/port -I$(GDAL_ROOT)/gcore \ # libtool targets and help variables LIBGDAL := libgdal.la LIBGDAL_CURRENT := 25 -LIBGDAL_REVISION := 3 +LIBGDAL_REVISION := 4 LIBGDAL_AGE := 5 # native build targets and variables diff --git a/gdal/NEWS b/gdal/NEWS index 6d8d9360e062..f8f04cbe9f47 100644 --- a/gdal/NEWS +++ b/gdal/NEWS @@ -1,3 +1,93 @@ += GDAL/OGR 2.4.4 Release Notes = + +The 2.4.4 release is a bug fix release. + +== Build == + + * Fix build against Poppler 0.82 and 0.83 + * MacOSX builds: Removed unnecessary header include and changed strnlen to CPLStrnlen (#1920) + +== Port == + + * /vsicurl (and derived filesystems): fix concurrency issue with multithreaded reads (#1244) + +== Algorithms == + + * Contour algorithm: fix (over) precision issue when comparing pixel value to NoData on Float32 rasters (#1987) + * Multithreaded warper: make sure a transformer object is used by the thread which created it (#1989). This workarounds a PROJ bug also fixed per https://github.com/OSGeo/PROJ/pull/1726 + * GDALFillNodata: fix crash when smooth_iterations is used, and with some progress functions such as the one used by Python (#1184) + * RPC transformer: test success code of GDALRPCTransform() in GDALCreateRPCTransformer() + +== GDAL core == + + * Block cache: fix corruption on multithreaded write on datasets (#2011) + * GDALUnrolledCopy: fix SSE2-only implementation (when SSSE3 is not available) + +== GDAL utilities == + + * gdal2tiles: update cache calculation (#2020) + +== GDAL drivers == + +COASP driver: + * fix crash on invalid filename. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=19740 + +IRIS driver: + * make identification more restrictive to avoid false-positive identification of raw binary formats such as ENVI (#1961) + +GRIB driver: + * do not do erroneous K->C unit conversion for derived forecasts whose content is not a temperature, but a derived quantity, such as spread + * update GRIB tables to degrib 2.24 + * add missing entries in MeteoAtmoChem table + * add more values from Table 4.5 in Surface type table + * add support for template 4.48 Optical Properties of Aerosol + * avoid erroneous K->C conversion for Dew point depression + +GTiff driver: + * internal libtiff: tif_ojpeg.c: fix regression of https://gitlab.com/libtiff/libtiff/issues/172 + +HFA driver: + * fix writing of compressed file when a RLE run count is in the [0x4000,0x8000[ range or [0x400000, 0x800000[ (#2150) + +PDF driver: + * fix crash on corrupted file. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=19098 + * fix use-after-free on some corrupted PDF files. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=19400 + +PDS driver: + * fix opening of datasets with BSQ organization (or single band), where one band is larger than 2 GB (2.3 regression) + * nasakeywordhandler: fixes to be able to read some labels with metadata items whose value is a list on several lines + +VRT driver: + * VRT warp: do not fail if a block has no corresponding source pixels (#1985) + * fix requesting a downsampling version of the mask band of a source that has masks and overviews + * avoid Invalid-enum-value behaviour. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=19391 + +== OGR core == + + * OGRLinearRing::isPointOnRingBoundary(): fix incomplete test that could falsely return true if the point was aligned with a segment, but not between the nodes. Impact correct reconstruction of holes in shapefile driver + * OGRGeometryFactory::ForceTo(): fix crash when forcing a MultiPolygon Z/M/ZM to a CompoundCurve (#2120) + * SQLite dialect: fix issue when using JOIN on a layer without fast filter count capability + +== OGR drivers == + +CAD driver: + * Fix read ellipse and arc (fix #1886) + +DXF driver: + * fix handling of SPLINE whose first knot is at a very very close to zero negative (#1969) + +ElasticSearch driver: + * translate constructs like CAST(field_name AS CHARACTER[(x)]) = 'foo' to ES query language + +GeoJSONSeq & TopoJSON drivers: + * avoid false positive detection and errors on unrelated http[s]:// filenames + +XLSX driver: + * avoid Invalid-enum-value error. Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=19337 + +WFS driver: + * skip silently GeoServer EPSG:404000 dummy CRS + = GDAL/OGR 2.4.3 Release Notes = The 2.4.3 release is a bug fix release. diff --git a/gdal/VERSION b/gdal/VERSION index 35cee72dcbf4..79a614418f74 100644 --- a/gdal/VERSION +++ b/gdal/VERSION @@ -1 +1 @@ -2.4.3 +2.4.4 diff --git a/gdal/alg/contour.cpp b/gdal/alg/contour.cpp index c77470f9a79e..5c131a0db5ef 100644 --- a/gdal/alg/contour.cpp +++ b/gdal/alg/contour.cpp @@ -564,6 +564,14 @@ CPLErr GDALContourGenerateEx( GDALRasterBandH hBand, void *hLayer, if ( opt ) { useNoData = true; noDataValue = CPLAtof( opt ); + if( GDALGetRasterDataType(hBand) == GDT_Float32 ) + { + int bClamped = FALSE; + int bRounded = FALSE; + noDataValue = GDALAdjustValueToDataType(GDT_Float32, + noDataValue, + &bClamped, &bRounded ); + } } int idField = -1; diff --git a/gdal/alg/gdal_rpc.cpp b/gdal/alg/gdal_rpc.cpp index 82db89c05e4f..b064b8cf5cee 100644 --- a/gdal/alg/gdal_rpc.cpp +++ b/gdal/alg/gdal_rpc.cpp @@ -922,7 +922,7 @@ void *GDALCreateRPCTransformer( GDALRPCInfo *psRPCInfo, int bReversed, int nSuccess = 0; // Try with DEM first. if( GDALRPCTransform( psTransform, !(psTransform->bReversed), 1, - &dfX, &dfY, &dfZ, &nSuccess) ) + &dfX, &dfY, &dfZ, &nSuccess) && nSuccess ) { dfRefPixel = dfX; dfRefLine = dfY; @@ -948,7 +948,7 @@ void *GDALCreateRPCTransformer( GDALRPCInfo *psRPCInfo, int bReversed, int nSuccess = 0; // Try with DEM first. if( GDALRPCTransform( psTransform, !(psTransform->bReversed), 1, - &dfX, &dfY, &dfZ, &nSuccess) ) + &dfX, &dfY, &dfZ, &nSuccess) && nSuccess ) { dfRefPixel = dfX; dfRefLine = dfY; diff --git a/gdal/alg/gdalwarpkernel.cpp b/gdal/alg/gdalwarpkernel.cpp index dd763c63ce67..32cdfa8c96e5 100644 --- a/gdal/alg/gdalwarpkernel.cpp +++ b/gdal/alg/gdalwarpkernel.cpp @@ -40,6 +40,7 @@ #include #include +#include #include #include @@ -204,11 +205,28 @@ struct _GWKJobStruct int (*pfnProgress)(GWKJobStruct* psJob); void *pTransformerArg; - // Just used during thread initialization phase. - GDALTransformerFunc pfnTransformerInit; - void *pTransformerArgInit; + void (*pfnFunc)(void*); // used by GWKRun() to assign the proper pTransformerArg } ; +struct GWKThreadInitData +{ + GDALTransformerFunc pfnTransformerInit = nullptr; + void *pTransformerArgInit = nullptr; + + void *pTransformerArg = nullptr; + GIntBig nThreadId = 0; +}; + +struct GWKThreadData +{ + CPLWorkerThreadPool* poThreadPool = nullptr; + GWKJobStruct* pasThreadJob = nullptr; + CPLCond* hCond = nullptr; + CPLMutex* hCondMutex = nullptr; + void* pTransformerArgInput = nullptr; // owned by calling layer. Not to be destroyed + std::map mapThreadToTransformerArg{}; +}; + /************************************************************************/ /* GWKProgressThread() */ /************************************************************************/ @@ -277,11 +295,11 @@ static CPLErr GWKGenericMonoThread( GDALWarpKernel *poWK, static void GWKThreadInitTransformer(void* pData) { - GWKJobStruct* psJob = static_cast(pData); - if( psJob->pTransformerArg == nullptr ) - psJob->pTransformerArg = - GDALCloneTransformer(psJob->pTransformerArgInit); - if( psJob->pTransformerArg != nullptr ) + GWKThreadInitData* psInitData = static_cast(pData); + if( psInitData->pTransformerArg == nullptr ) + psInitData->pTransformerArg = + GDALCloneTransformer(psInitData->pTransformerArgInit); + if( psInitData->pTransformerArg != nullptr ) { // In case of lazy opening (for example RPCDEM), do a dummy // transformation to be sure that the DEM is really opened with the @@ -291,24 +309,17 @@ static void GWKThreadInitTransformer(void* pData) double dfZ = 0.0; int bSuccess = FALSE; CPLPushErrorHandler(CPLQuietErrorHandler); - psJob->pfnTransformerInit(psJob->pTransformerArg, TRUE, 1, + psInitData->pfnTransformerInit(psInitData->pTransformerArg, TRUE, 1, &dfX, &dfY, &dfZ, &bSuccess ); CPLPopErrorHandler(); } + psInitData->nThreadId = CPLGetPID(); } /************************************************************************/ /* GWKThreadsCreate() */ /************************************************************************/ -typedef struct -{ - CPLWorkerThreadPool* poThreadPool; - GWKJobStruct* pasThreadJob; - CPLCond* hCond; - CPLMutex* hCondMutex; -} GWKThreadData; - void* GWKThreadsCreate( char** papszWarpOptions, GDALTransformerFunc pfnTransformer, void* pTransformerArg ) @@ -328,11 +339,7 @@ void* GWKThreadsCreate( char** papszWarpOptions, if( nThreads > 128 ) nThreads = 128; - GWKThreadData* psThreadData = static_cast( - VSI_CALLOC_VERBOSE(1, sizeof(GWKThreadData))); - if( psThreadData == nullptr ) - return nullptr; - + GWKThreadData* psThreadData = new GWKThreadData(); CPLCond* hCond = nullptr; if( nThreads ) hCond = CPLCreateCond(); @@ -360,18 +367,22 @@ void* GWKThreadsCreate( char** papszWarpOptions, } CPLReleaseMutex(psThreadData->hCondMutex); + std::vector> apoInitData; std::vector apInitData; for( int i = 0; i < nThreads; i++ ) { psThreadData->pasThreadJob[i].hCond = psThreadData->hCond; psThreadData->pasThreadJob[i].hCondMutex = psThreadData->hCondMutex; - psThreadData->pasThreadJob[i].pfnTransformerInit = pfnTransformer; - psThreadData->pasThreadJob[i].pTransformerArgInit = pTransformerArg; + + std::unique_ptr poInitData(new GWKThreadInitData()); + poInitData->pfnTransformerInit = pfnTransformer; + poInitData->pTransformerArgInit = pTransformerArg; if( i == 0 ) - psThreadData->pasThreadJob[i].pTransformerArg = pTransformerArg; + poInitData->pTransformerArg = pTransformerArg; else - psThreadData->pasThreadJob[i].pTransformerArg = nullptr; - apInitData.push_back(&(psThreadData->pasThreadJob[i])); + poInitData->pTransformerArg = nullptr; + apoInitData.push_back(std::move(poInitData)); + apInitData.push_back(apoInitData.back().get()); } psThreadData->poThreadPool = new (std::nothrow) CPLWorkerThreadPool(); @@ -386,7 +397,7 @@ void* GWKThreadsCreate( char** papszWarpOptions, for( int i = 1; i < nThreads; i++ ) { - if( psThreadData->pasThreadJob[i].pTransformerArg == nullptr ) + if( apoInitData[i]->pTransformerArg == nullptr ) { CPLDebug("WARP", "Cannot deserialize transformer"); bTransformerCloningSuccess = false; @@ -394,13 +405,24 @@ void* GWKThreadsCreate( char** papszWarpOptions, } } - if( !bTransformerCloningSuccess ) + if( bTransformerCloningSuccess ) + { + psThreadData->pTransformerArgInput = pTransformerArg; + for( int i = 0; i < nThreads; i++ ) + { + const auto nThreadId = apoInitData[i]->nThreadId; + CPLAssert(psThreadData->mapThreadToTransformerArg.find(nThreadId) == + psThreadData->mapThreadToTransformerArg.end()); + psThreadData->mapThreadToTransformerArg[nThreadId] = + apoInitData[i]->pTransformerArg; + } + } + else { for( int i = 1; i < nThreads; i++ ) { - if( psThreadData->pasThreadJob[i].pTransformerArg ) - GDALDestroyTransformer(psThreadData-> - pasThreadJob[i].pTransformerArg); + if( apoInitData[i]->pTransformerArg ) + GDALDestroyTransformer(apoInitData[i]->pTransformerArg); } CPLFree(psThreadData->pasThreadJob); psThreadData->pasThreadJob = nullptr; @@ -427,15 +449,10 @@ void GWKThreadsEnd( void* psThreadDataIn ) GWKThreadData* psThreadData = static_cast(psThreadDataIn); if( psThreadData->poThreadPool ) { - const int nThreads = psThreadData->poThreadPool->GetThreadCount(); - if( psThreadData->pasThreadJob ) + for( auto& pair: psThreadData->mapThreadToTransformerArg ) { - for( int i = 1; i < nThreads; i++ ) - { - if( psThreadData->pasThreadJob[i].pTransformerArg ) - GDALDestroyTransformer(psThreadData-> - pasThreadJob[i].pTransformerArg); - } + if( pair.second != psThreadData->pTransformerArgInput ) + GDALDestroyTransformer(pair.second); } delete psThreadData->poThreadPool; } @@ -444,9 +461,27 @@ void GWKThreadsEnd( void* psThreadDataIn ) CPLDestroyCond(psThreadData->hCond); if( psThreadData->hCondMutex ) CPLDestroyMutex(psThreadData->hCondMutex); - CPLFree(psThreadData); + delete psThreadData; +} + +/************************************************************************/ +/* ThreadFuncAdapter() */ +/************************************************************************/ + +static void ThreadFuncAdapter(void* pData) +{ + // Assign the pTransformerArg created in the current thread to this job + // This workarounds the PROJ bug fixed in https://github.com/OSGeo/PROJ/pull/1726 + GWKJobStruct* psJob = static_cast(pData); + const GWKThreadData* psThreadData = + static_cast(psJob->poWK->psThreadData); + auto oIter = psThreadData->mapThreadToTransformerArg.find(CPLGetPID()); + CPLAssert(oIter != psThreadData->mapThreadToTransformerArg.end()); + psJob->pTransformerArg = oIter->second; + psJob->pfnFunc(pData); } + /************************************************************************/ /* GWKRun() */ /************************************************************************/ @@ -519,7 +554,8 @@ static CPLErr GWKRun( GDALWarpKernel *poWK, psThreadData->pasThreadJob[i].pfnProgress = GWKProgressThread; else psThreadData->pasThreadJob[i].pfnProgress = nullptr; - psThreadData->poThreadPool->SubmitJob( pfnFunc, + psThreadData->pasThreadJob[i].pfnFunc = pfnFunc; + psThreadData->poThreadPool->SubmitJob( ThreadFuncAdapter, static_cast(&psThreadData->pasThreadJob[i]) ); } diff --git a/gdal/alg/gdalwarpoperation.cpp b/gdal/alg/gdalwarpoperation.cpp index e2c4c7906ffd..da621eb6783e 100644 --- a/gdal/alg/gdalwarpoperation.cpp +++ b/gdal/alg/gdalwarpoperation.cpp @@ -447,6 +447,19 @@ int GDALWarpOperation::ValidateOptions() return FALSE; } + const bool bErrorOutIfEmptySourceWindow = CPLFetchBool( + psOptions->papszWarpOptions, + "ERROR_OUT_IF_EMPTY_SOURCE_WINDOW", true); + if( !bErrorOutIfEmptySourceWindow && + CSLFetchNameValue(psOptions->papszWarpOptions, "INIT_DEST") == nullptr ) + { + CPLError( CE_Failure, CPLE_IllegalArg, + "GDALWarpOptions.Validate(): " + "ERROR_OUT_IF_EMPTY_SOURCE_WINDOW=FALSE can only be used " + "if INIT_DEST is set"); + return FALSE; + } + return TRUE; } @@ -1779,7 +1792,14 @@ CPLErr GDALWarpOperation::WarpRegionToBuffer( if( hWarpMutex != nullptr ) CPLReleaseMutex( hWarpMutex ); if( eErr != CE_None ) + { + const bool bErrorOutIfEmptySourceWindow = CPLFetchBool( + psOptions->papszWarpOptions, + "ERROR_OUT_IF_EMPTY_SOURCE_WINDOW", true); + if( !bErrorOutIfEmptySourceWindow ) + return CE_None; return eErr; + } } /* -------------------------------------------------------------------- */ @@ -2730,10 +2750,21 @@ CPLErr GDALWarpOperation::ComputeSourceWindow( /* -------------------------------------------------------------------- */ if( nFailedCount > nSamplePoints - 5 ) { - CPLError( CE_Failure, CPLE_AppDefined, - "Too many points (%d out of %d) failed to transform, " - "unable to compute output bounds.", - nFailedCount, nSamplePoints ); + const bool bErrorOutIfEmptySourceWindow = CPLFetchBool( + psOptions->papszWarpOptions, + "ERROR_OUT_IF_EMPTY_SOURCE_WINDOW", true); + if( bErrorOutIfEmptySourceWindow ) + { + CPLError( CE_Failure, CPLE_AppDefined, + "Too many points (%d out of %d) failed to transform, " + "unable to compute output bounds.", + nFailedCount, nSamplePoints ); + } + else + { + CPLDebug("WARP", "Cannot determine source window for %d,%d,%d,%d", + nDstXOff, nDstYOff, nDstXSize, nDstYSize); + } return CE_Failure; } diff --git a/gdal/alg/rasterfill.cpp b/gdal/alg/rasterfill.cpp index 761b621974db..c1c1548183b2 100644 --- a/gdal/alg/rasterfill.cpp +++ b/gdal/alg/rasterfill.cpp @@ -867,7 +867,7 @@ GDALFillNodata( GDALRasterBandH hTargetBand, GDALFlushRasterCache( hMaskBand ); void *pScaledProgress = - GDALCreateScaledProgress( dfProgressRatio, 1.0, pfnProgress, nullptr ); + GDALCreateScaledProgress( dfProgressRatio, 1.0, pfnProgress, pProgressArg ); eErr = GDALMultiFilter( hTargetBand, hMaskBand, hFiltMaskBand, nSmoothingIterations, diff --git a/gdal/data/gcs.override.csv b/gdal/data/gcs.override.csv index 9b8d1377c7a8..05cbab3f7718 100644 --- a/gdal/data/gcs.override.csv +++ b/gdal/data/gcs.override.csv @@ -5,3 +5,6 @@ # https://svn.osgeo.org/metacrs/geotiff/trunk/libgeotiff/csv/gcs.override.csv # # Do *not* change other copies without upstreaming the results to libgeotiff. + +# Koordinates: Panama PA27 (for PROJCS #800200) +800201,"PA27",800202,PA27,800202,9122,7008,8901,1,0,6422,,0,,,,,,,, \ No newline at end of file diff --git a/gdal/data/pcs.override.csv b/gdal/data/pcs.override.csv index b8cd3cb59c8a..bf1ab7b4c272 100644 --- a/gdal/data/pcs.override.csv +++ b/gdal/data/pcs.override.csv @@ -17,3 +17,6 @@ # we "fix" the original to reduce problems folks would otherwise encounter. # 26799,"NAD27 / California zone VII",9003,4267,10408,9802,1,0,4497,8821,34.08,9110,8822,-118.2,9110,8823,34.25,9110,8824,33.52,9110,8826,4186692.58,9003,8827,4160926.74,9003,,,,,,,,,, + +# Koordinates: Panama UTM-17N (NAD27 with custom towgs84) +800200,"Panama UTM-17N-PA27",9001,800201,16017,9807,1,0,4400,8801,0,9102,8802,-81,9102,8805,0.9996,9201,8806,500000,9001,8807,0,9001,,,,,,,-22.876415,99.350159,140.532555,2.0948687,-0.79563677,-0.59689367,5.00006 diff --git a/gdal/debian/README.source b/gdal/debian/README.source new file mode 100644 index 000000000000..5a06ed2223e5 --- /dev/null +++ b/gdal/debian/README.source @@ -0,0 +1,72 @@ +GDAL source for Debian +---------------------- + +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +To get detailed instructions on how to apply the series of patches +and modify them, please read /usr/share/doc/quilt/README.source. + +Most of applied patches are due to Debian Policy requirements and +the need of avoiding hidden breakages at every new release, due +to ABI changes in the public C++ interface. This is the reason +to embed versions within package and library names. + +Note that debian/rules includes three targets (gdal-{grass,ecw,mrsid}) +to autogenerate Grass/ECW/MrSID external plugins, which are coherent +with the plain package provided in Debian. The only plugin which +is supported upstream is the Grass one. Do not bother upstream +with bugs or requests about the other ones. + +GDAL symbols and versioning +--------------------------- + +Facts: + + - the C interface is considered stable, but it adds new functions at every + new release. + - the C++ interface is considered unstable and adds/removes/changes methods + at every new minor/major release. That implies both API/ABI changes at + every new release, possibly. + - both C and C++ APIs coexists in the same library with a unique SONAME (the + C one). + - the only official API that should be used by all programs is the C one. + Programs using the C++ ABI will depend on the virtual ABI package provided + by the libgdal package, in addition to the libgdal package itself to track + transitions for the C++ ABI breakage when the SONAME doesn't change. + +So: + + - Use and maintain a single arch-indep C-only symbol file as libgdal*.symbols.common + and an arch-dep C++ demangled symbol file for each arch. They are expected to + change at every new upstream release, but can be used to do general checks + on possible API/ABI violations. Files can be updated by running + dpkg-gensymbols on each build box, which is already done by dh_makeshlibs. + + To do that at each upgrade the following procedure is suggested: + - do a an experimental upload with old symbol files and force + ignoring of symbol changes (-c0 arg in dh_makeshlibs). + - collect all resulting shlib on all architectures. + - run manually dpkg-gensymbols to collect differences and check + that all is ok. If not, solve the situation in a creative manner :) + + wget http://ftp.it.debian.org/debian/pool/main/g/gdal/libgdal1__armel.deb + dpkg --extract libgdal1__armel.deb /tmp + dpkg-gensymbols -plibgdal1 -aarmel -v \ + -Idebian/libgdal1.symbols.armel -O/tmp/libgdal1.symbols.armel \ + -e/tmp/usr/lib/libgdal.so.1.16.0 + + - update symbol files to ignore uninfluent changes in C++ API on + all archs. You will need c++filt to demangle C++ symbols and + a bit of vi/sed magics. + - re-upload in unstable if possible with new symbols and after + removing the -c0 arg. + + You can use the gdal-symbols.pl script to assist with symbols file updates. + It automates most of the work required to collect symbols for all + architectures using packages downloaded from snapshot.debian.org, + and optionally update the current symbols file with the newly generated + ones. + + -- Francesco Paolo Lovergine Thu, 23 Feb 2012 22:45:56 +0200 diff --git a/gdal/debian/TODO b/gdal/debian/TODO new file mode 100644 index 000000000000..f9570c40c7cd --- /dev/null +++ b/gdal/debian/TODO @@ -0,0 +1,9 @@ +Debian maintainers TODO list +---------------------------- + +* C# binding needs probably to be investigated. It is currently not too stabilized. + Tcl/Tk binding could be also considered as external project, but its status needs + to be checked as well. I would avoid both PHP and Java bindings because not yet + mature. + + -- Francesco Paolo Lovergine Fri Mar 14 14:34:05 CET 2008 diff --git a/gdal/debian/changelog b/gdal/debian/changelog new file mode 100644 index 000000000000..e63292134e37 --- /dev/null +++ b/gdal/debian/changelog @@ -0,0 +1,2202 @@ +gdal (2.4.2+dfsg-1~bionic0) bionic; urgency=medium + + * No change rebuild for Bionic. + + -- Angelos Tzotsos Sun, 14 Jul 2019 16:00:00 +0200 + +gdal (2.4.2+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Update gbp.conf to use --source-only-changes by default. + * Update watch file to check version directories. + * Move from experimental to unstable. + + -- Bas Couwenberg Sun, 07 Jul 2019 14:13:35 +0200 + +gdal (2.4.1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update watch file for final releases. + * Update symbols for 2.4.1~rc1. + * Strip pre-releases from symbols version. + + -- Bas Couwenberg Fri, 22 Mar 2019 12:46:23 +0100 + +gdal (2.4.1~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Add -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1 to CFLAGS for PROJ 6.0.0. + * Update ogdi (build) dependencies for 4.0.0. + * Update watch file for 2.4.1 pre-releases. + * Refresh patches. + * Drop package name from lintian overrides. + * Add lintian overrides for file-references-package-build-path. + + -- Bas Couwenberg Fri, 15 Mar 2019 14:02:35 +0100 + +gdal (2.4.0+dfsg-1) unstable; urgency=medium + + * Update symbols for kfreebsd-i386. + * Move from experimental to unstable. + + -- Bas Couwenberg Wed, 02 Jan 2019 12:59:50 +0100 + +gdal (2.4.0+dfsg-1~exp2) experimental; urgency=medium + + * Update symbols for kfreebsd-amd64. + * Strip pre-releases from symbols version. + * Bump Standards-Version to 4.3.0, no changes. + + -- Bas Couwenberg Tue, 25 Dec 2018 20:59:37 +0100 + +gdal (2.4.0+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update watch file for final releases. + * Update symbols for 2.4.0~rc1. + + -- Bas Couwenberg Fri, 21 Dec 2018 20:20:20 +0100 + +gdal (2.4.0~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update watch file for 2.4.0 pre-releases. + * Refresh patches. + * Update copyright file, changes: + - Update copyright years for copyright holders + - Add copyright holders + - Add license & copyright for LercLib + * Override dh_installdocs to install NOTICE file in all packages. + + -- Bas Couwenberg Thu, 20 Dec 2018 17:42:37 +0100 + +gdal (2.3.3+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Update watch file for final releases. + * Update symbols for 2.3.3. + * Move from experimental to unstable. + + -- Bas Couwenberg Thu, 20 Dec 2018 13:42:28 +0100 + +gdal (2.3.3~rc2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + + -- Bas Couwenberg Fri, 14 Dec 2018 17:07:19 +0100 + +gdal (2.3.3~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update watch file for 2.3.3 pre-releases. + * Drop Poppler patches, included upstream. Refresh remaining patches. + + -- Bas Couwenberg Fri, 14 Dec 2018 15:39:12 +0100 + +gdal (2.3.2+dfsg-4) unstable; urgency=medium + + * Add upstream patch for Poppler 0.71.0 support. + (closes: #915722) + * Update symbols. + + -- Bas Couwenberg Fri, 07 Dec 2018 09:59:28 +0100 + +gdal (2.3.2+dfsg-3) unstable; urgency=medium + + * Add Build-Depends-Package field to symbols file. + * Update symbols for 2.3.2. + * Strip pre-releases from symbols version. + + -- Bas Couwenberg Tue, 20 Nov 2018 11:24:35 +0100 + +gdal (2.3.2+dfsg-2) unstable; urgency=medium + + * Add upstream patch to fix FTBFS with Poppler 0.69.0. + (closes: #910872) + + -- Bas Couwenberg Fri, 12 Oct 2018 22:27:31 +0200 + +gdal (2.3.2+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Update symbols for 2.3.2~rc1. + * Fix gdal-abi dependency for ia64 & riscv64 symbols. + * Update watch file for final releases. + * Move from experimental to unstable. + + -- Bas Couwenberg Fri, 28 Sep 2018 16:15:35 +0200 + +gdal (2.3.2~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Bump Standards-Version to 4.2.1, no changes. + * Update copyright file. + * Update watch file for 2.3.2 pre-releases. + * Move JNI libraries from usr/lib/ to usr/lib/jni again. + + -- Bas Couwenberg Fri, 21 Sep 2018 11:33:48 +0200 + +gdal (2.3.1+dfsg-3) unstable; urgency=medium + + * Bump Standards-Version to 4.2.0, no changes. + * Don't run python generate target in parallel. + (closes: #906222) + + -- Bas Couwenberg Mon, 20 Aug 2018 22:23:41 +0200 + +gdal (2.3.1+dfsg-2) unstable; urgency=medium + + [ Gianfranco Costamagna ] + * Disable PIE for older ubuntu releases, PIE + works correctly with cosmic+ releases. + + [ Bas Couwenberg ] + * Bump Standards-Version to 4.1.5, no changes. + * Drop autopkgtest to test installability. + * Add lintian override for testsuite-autopkgtest-missing. + + -- Bas Couwenberg Tue, 31 Jul 2018 14:37:57 +0200 + +gdal (2.3.1+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Update symbols for 2.3.1~rc2. + * Update watch file for final releases. + * Strip pre-releases from symbols version. + * Move from experimental to unstable. + + -- Bas Couwenberg Thu, 28 Jun 2018 11:45:27 +0200 + +gdal (2.3.1~rc2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Drop parallel build patch, fixed with upstream patch. + * Update symbols for 2.3.1~rc1. + + -- Bas Couwenberg Sat, 23 Jun 2018 19:27:04 +0200 + +gdal (2.3.1~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update watch file for 2.3.1 pre-releases. + * Refresh patches. + * Add patch to fix parallel build failure. + + -- Bas Couwenberg Sat, 23 Jun 2018 09:45:22 +0200 + +gdal (2.3.0+dfsg-1) unstable; urgency=medium + + * Update symbols for mipsel. + * Strip pre-releases from symbols version. + * Move from experimental to unstable. + + -- Bas Couwenberg Thu, 24 May 2018 18:32:34 +0200 + +gdal (2.3.0+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update watch file for final releases. + + -- Bas Couwenberg Fri, 11 May 2018 12:36:56 +0200 + +gdal (2.3.0~rc1+dfsg-1~exp2) experimental; urgency=medium + + * Drop ancient X-Python3-Version field. + * Strip trailing whitespace from changelog, control & rules files. + * Don't use version specified data & plugins directory. + * Update symbols for 2.3.0~rc1. + + -- Bas Couwenberg Mon, 07 May 2018 19:02:21 +0200 + +gdal (2.3.0~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update symbols for 2.3.0~beta1. + * Drop Re-install-gdal_csv.h.patch, included upstream. + Refresh remaining patches. + * Enable parallel make. + + -- Bas Couwenberg Fri, 04 May 2018 18:33:14 +0200 + +gdal (2.3.0~beta1+dfsg-2~exp1) experimental; urgency=medium + + * Add upstream patch to re-install gdal_csv.h. + + -- Bas Couwenberg Sat, 21 Apr 2018 21:17:37 +0200 + +gdal (2.3.0~beta1+dfsg-1) experimental; urgency=medium + + * New upstream beta release. + * Update upstream metadata for move to GitHub. + * Update Vcs-* URLs for Salsa. + * Drop override for vcs-deprecated-in-debian-infrastructure. + * Bump Standards-Version to 4.1.4, no changes. + * Update watch file for 2.3.0 (pre-)releases. + * Don't exclude esri_extra.wkt, license issue resolved. + * Refresh patches. + * Update copyright file, changes: + - Update copyright years for existing copyright holders + - Add new copyright holders + - Change license shortname MIT to Expat + - Drop license & copyright for autotools files + - Add license & copyright for ESRI WKT files + - Add license & copyright for cpl_mem_cache.h + * Enable zstd support. + * Enable CharLS support. + * Rename --with-static-proj4 configure option to --with-proj. + * Fix JNI library installation. + * Drop unnecessary get-orig-source target. + + -- Bas Couwenberg Fri, 20 Apr 2018 15:55:03 +0200 + +gdal (2.2.4+dfsg-1) unstable; urgency=medium + + * New upstream release. + * Update watch file for final releases. + * Simplify overrides for vcs-deprecated-in-debian-infrastructure. + * Add python3-distutils to build dependencies. + * Move from experimental to unstable. + + -- Bas Couwenberg Wed, 21 Mar 2018 16:14:53 +0100 + +gdal (2.2.4~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update watch file for 2.2.4 (pre-)releases. + * Drop patches included upstream. Refresh remaining patches. + * Update C++ symbols files. + * Add lintian overrides for vcs-deprecated-in-debian-infrastructure. + + -- Bas Couwenberg Mon, 19 Mar 2018 15:35:59 +0100 + +gdal (2.2.3+dfsg-2) unstable; urgency=medium + + * Update spelling-errors.patch to also fix 'Altitude' typo. + Thanks to pabs for spotting this one. + * Update C++ symbols files. + * Move from experimental to unstable. + + -- Bas Couwenberg Tue, 06 Feb 2018 07:39:14 +0100 + +gdal (2.2.3+dfsg-2~exp1) experimental; urgency=medium + + [ Francesco Paolo Lovergine ] + * Added a couple of missing build-dep to correctly generate Perl binding + documentation. + * New patch perl-doxygen added to get the full classes documentation in + Perl binding, due to current doxygen implementation. + * The doxygen jquery is currently a fork of jquery in minified form, and it + is not compatible with the modern one. Replacement with the libjsquery + provided now removed. + * autotools_dev plugin is deprecated since debhelper >= 9.20160114 and now + no more supported. + + [ Bas Couwenberg ] + * Strip trailing whitespace form changelog and patch header. + * Reorder build dependencies (sorted by name). + * Remove jquery symlinks and dependencies. + * Update copyright-format URL to use HTTPS. + * Add upstream patch to avoid potential issue with CPL circular buffers. + * Bump Standards-Version to 4.1.3, no changes. + * Update symbols for powerpcspe. + * Move libgdal-perl documentation to separate arch:all package. + * Add lintian override for pkg-config-unavailable-for-cross-compilation. + * Add patch to fix spelling errors. + + -- Bas Couwenberg Mon, 29 Jan 2018 22:45:49 +0100 + +gdal (2.2.3+dfsg-1) unstable; urgency=medium + + * Update symbols for alpha, hurd-i386 & m68k. + * Bump Standards-Version to 4.1.2, no changes. + * Move from experimental to unstable. + + -- Bas Couwenberg Sun, 17 Dec 2017 11:21:25 +0100 + +gdal (2.2.3+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for 2.2.3~rc1. + * Drop unused override for debian-watch-uses-insecure-uri. + + -- Bas Couwenberg Thu, 23 Nov 2017 12:21:44 +0100 + +gdal (2.2.3~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Strip trailing whitespace from changelog. + * Update watch file for 2.2.3 (pre-)releases. + * Drop svn-r40330_Add-support-for-openjpeg-2.3.patch, included upstream. + * Strip trailing whitespace from control & changelog files. + * Add lintian override for debian-watch-uses-insecure-uri. + * Use deferred asignment operator for dpkg-architecture call for + DEB_HOST_MULTIARCH variable. + + -- Bas Couwenberg Mon, 20 Nov 2017 14:34:28 +0100 + +gdal (2.2.2+dfsg-2) unstable; urgency=medium + + * Mark gdal-data & libgdal-doc as Multi-Arch: foreign. + (closes: #879015) + * Update symbols for powerpc. + * Add upstream patch to support OpenJPEG 2.3. + + -- Bas Couwenberg Wed, 18 Oct 2017 16:03:28 +0200 + +gdal (2.2.2+dfsg-1) unstable; urgency=medium + + * Update watch file for final releases. + * Add patch to fix privacy-breach-generic lintian issues. + * Update symbols for alpha, armhf, hppa & sh4. + * Bump Standards-Version to 4.1.1, no changes. + * Add lintian overrides for copyright-year-in-future false positive. + * Move from experimental to unstable. + + -- Bas Couwenberg Tue, 03 Oct 2017 19:53:18 +0200 + +gdal (2.2.2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for 2.2.2~rc1. + * Strip pre-releases from symbols version. + * Bump Standards-Version to 4.1.0, no changes. + + -- Bas Couwenberg Fri, 22 Sep 2017 14:55:55 +0200 + +gdal (2.2.2~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update watch file for 2.2.2 (pre-)releases. + * Refresh patches. + + -- Bas Couwenberg Fri, 15 Sep 2017 21:10:25 +0200 + +gdal (2.2.1+dfsg-2) unstable; urgency=medium + + * Add symbols for sh4. + * Build & install documentation for Perl bindings. + (closes: #868311) + + -- Bas Couwenberg Fri, 14 Jul 2017 17:40:53 +0200 + +gdal (2.2.1+dfsg-1) unstable; urgency=medium + + * Move from experimental to unstable. + + -- Bas Couwenberg Mon, 10 Jul 2017 18:06:59 +0200 + +gdal (2.2.1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for 2.2.1~rc1. + * Strip pre-releases from symbols version. + + -- Bas Couwenberg Fri, 30 Jun 2017 13:04:12 +0200 + +gdal (2.2.1~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Disable PIE on Ubuntu where it's still problematic. + * Bump Standards-Version to 4.0.0, no changes. + * Add autopkgtest to test installability. + * Refresh patches. + * Use pkg-info.mk variables instead of dpkg-parsechangelog output. + + -- Bas Couwenberg Fri, 23 Jun 2017 14:57:10 +0200 + +gdal (2.2.0+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for 2.2.0~rc1. + * Strip pre-releases from symbols version. + + -- Bas Couwenberg Tue, 09 May 2017 17:33:46 +0200 + +gdal (2.2.0~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update symbols for 2.2.0~beta2. Add symbols file for powerpcspe. + + -- Bas Couwenberg Fri, 28 Apr 2017 18:41:31 +0200 + +gdal (2.2.0~beta2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream beta release. + * Update symbols for 2.2.0~beta1. + * Update copyright years for Ivan Lucena. + * Refresh patches. + + -- Bas Couwenberg Sun, 23 Apr 2017 16:04:11 +0200 + +gdal (2.2.0~beta1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream beta release. + * Update watch file for 2.2.0 (pre-)releases. + * Drop patches applied upstream. Refresh remaining patches. + * Move data files to architecture independent gdal-data package. + * Update copyright file, changes: + - Update copyright years for copyright holders + - Add new copyright holders + - Add license & copyright for minidriver_mrf.cpp + * Enable SOSI support. + * Include ogrmerge.py in python-gdal package. + * Include gnmanalyse & gnmmanage in gdal-bin package. + + -- Bas Couwenberg Fri, 14 Apr 2017 14:52:26 +0200 + +gdal (2.1.3+dfsg-1~exp4) experimental; urgency=medium + + * Merge changes from gdal (2.1.2+dfsg-5). + (closes: #859918) + * Update symbols for hppa. + + -- Bas Couwenberg Sun, 09 Apr 2017 15:44:44 +0200 + +gdal (2.1.3+dfsg-1~exp3) experimental; urgency=medium + + * Update symbols for alpha. + * Merge changes from gdal (2.1.2+dfsg-4). + (closes: #859368) + + -- Bas Couwenberg Mon, 03 Apr 2017 01:10:07 +0200 + +gdal (2.1.3+dfsg-1~exp2) experimental; urgency=medium + + * Update symbols for kfreebsd-{amd64,i386}. + * Add upstream patch to fix _gdal_array ImportError with Python 3. + (closes: #853900) + + -- Bas Couwenberg Thu, 02 Feb 2017 19:22:17 +0100 + +gdal (2.1.3+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for 2.1.3, add symbols for m68k. + * Update watch file for final releases. + * Strip pre-releases from ABI version when creating new symbols files. + * Use dpkg-architecture to set DEB_HOST_MULTIARCH if not already set. + + -- Bas Couwenberg Fri, 27 Jan 2017 12:52:52 +0100 + +gdal (2.1.3~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update watch file for 2.1.3 (pre-)releases. + * Drop svn-r36175-DODS-fix-crash-on-URL-that-are-not-DODS-servers.patch, + included upstream. Refresh remaining patches. + + -- Bas Couwenberg Fri, 20 Jan 2017 10:35:53 +0100 + +gdal (2.1.2+dfsg-5) unstable; urgency=medium + + * Mark libgdal20 as breaking libgdal1h to fix upgrades. + (closes: #859918) + + -- Bas Couwenberg Sun, 09 Apr 2017 13:22:29 +0200 + +gdal (2.1.2+dfsg-4) unstable; urgency=medium + + * Enable PIE hardening flags. + (closes: #859368) + * Drop unused hardening-no-pie lintian override. + + -- Bas Couwenberg Sun, 02 Apr 2017 23:35:22 +0200 + +gdal (2.1.2+dfsg-3) unstable; urgency=medium + + * Add upstream patch to fix _gdal_array ImportError with Python 3. + (closes: #853900) + + -- Bas Couwenberg Thu, 02 Feb 2017 20:15:59 +0100 + +gdal (2.1.2+dfsg-2) unstable; urgency=medium + + * Add upstream patch to fix crash on URLs that are not DODS servers. + (LP: #1640360) + * Disable cryptopp support, causes FTBFS with new revision. + * Re-instate hardening-no-pie lintian override. + + -- Bas Couwenberg Wed, 09 Nov 2016 18:38:03 +0100 + +gdal (2.1.2+dfsg-1) unstable; urgency=medium + + * Move from experimental to unstable. + + -- Bas Couwenberg Fri, 28 Oct 2016 00:00:50 +0200 + +gdal (2.1.2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + + -- Bas Couwenberg Thu, 27 Oct 2016 14:27:42 +0200 + +gdal (2.1.2~rc4+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + + -- Bas Couwenberg Mon, 24 Oct 2016 18:56:33 +0200 + +gdal (2.1.2~rc3+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + + -- Bas Couwenberg Fri, 21 Oct 2016 11:50:27 +0200 + +gdal (2.1.2~rc2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update symbols for amd64, arm*, i386, kfreebsd-*, mips*, powerpc, ppc64*, + s390x & sparc64. + * Drop unused override for hardening-no-pie. + + -- Bas Couwenberg Thu, 20 Oct 2016 10:42:00 +0200 + +gdal (2.1.2~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Refresh patches. + * Update spelling-errors.patch to fix 'occurred' typo. + + -- Bas Couwenberg Fri, 14 Oct 2016 18:13:51 +0200 + +gdal (2.1.1+dfsg-5) unstable; urgency=medium + + * Update spelling-errors.patch to fix additional typos. + * Reinstate MySQL/MariaDB support, mariadb-10.0 available on mips64el now. + Changes: + - Add default-libmysqlclient-dev (build) dependency + - Add --with-mysql configure option + - Add RegisterOGRMySQL@Base symbol + + -- Bas Couwenberg Thu, 13 Oct 2016 07:30:43 +0200 + +gdal (2.1.1+dfsg-4) unstable; urgency=medium + + * Remove MySQL support. The dependencies via default-libmysqlclient-dev + cannot be satisfied on all release architectures. + + -- Bas Couwenberg Wed, 07 Sep 2016 21:17:25 +0200 + +gdal (2.1.1+dfsg-3) unstable; urgency=medium + + * Update symbols for ppc64 with GCC 6.2. + * Change libmysqlclient-dev dependencies to default-libmysqlclient-dev. + (closes: #836962) + + -- Bas Couwenberg Wed, 07 Sep 2016 18:05:23 +0200 + +gdal (2.1.1+dfsg-2) unstable; urgency=medium + + * Strip pre-releases from symbols version. + * Update symbols for rebuild with GCC 6.2. + * Add libgdal-grass to gdal-bin Suggests. + * Don't filter out -Werror=format-security, fixed upstream. + (closes: #834174) + * Switch to headless variant for default-jdk dependency. + + -- Bas Couwenberg Sat, 03 Sep 2016 16:03:40 +0200 + +gdal (2.1.1+dfsg-1) unstable; urgency=medium + + * Move from experimental to unstable. + + -- Bas Couwenberg Wed, 13 Jul 2016 16:27:21 +0200 + +gdal (2.1.1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for hppa & sparc64. + * Update watch file for final releases. + + -- Bas Couwenberg Wed, 13 Jul 2016 11:18:52 +0200 + +gdal (2.1.1~rc2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update symbols for amd64, arm64, armel, armhf, hurd-i386, i386, + kfreebsd-{amd64,i386}, mips, mipsel, mips64el, powerpc, ppc64, ppc64el, + s390x. + + -- Bas Couwenberg Thu, 07 Jul 2016 13:44:17 +0200 + +gdal (2.1.1~rc1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Fix python3-gdal description, tools only included in python-gdal. + * Drop unused override for old-style-config-script-multiarch-path. + * Drop unused override for spelling-error-in-binary. + * Add patch to fix spelling errors. + + -- Bas Couwenberg Sun, 03 Jul 2016 18:32:39 +0200 + +gdal (2.1.0+dfsg-3) unstable; urgency=medium + + * Add (modified) patch by Alexis Bienvenüe to make the build reproducible. + (closes: #824808) + + -- Bas Couwenberg Sat, 28 May 2016 12:11:11 +0200 + +gdal (2.1.0+dfsg-2) unstable; urgency=medium + + * Update symbols for alpha, hppa, sparc64 & x32. + + -- Bas Couwenberg Thu, 12 May 2016 19:24:04 +0200 + +gdal (2.1.0+dfsg-1) unstable; urgency=medium + + * Update symbols for sparc64. + * Move from experimental to unstable. + + -- Bas Couwenberg Tue, 10 May 2016 14:09:59 +0200 + +gdal (2.1.0+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update symbols for mips64el & ppc64. + + -- Bas Couwenberg Mon, 02 May 2016 11:20:36 +0200 + +gdal (2.1.0~rc4+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + + -- Bas Couwenberg Fri, 29 Apr 2016 11:59:48 +0200 + +gdal (2.1.0~rc1+dfsg-1~exp2) experimental; urgency=medium + + * Add automake1.11 to Build-Conflicts, causes FTBFS in experimental. + + -- Bas Couwenberg Tue, 19 Apr 2016 21:48:17 +0200 + +gdal (2.1.0~rc1+dfsg-1~exp1) experimental; urgency=medium + + * Update symbols for hppa & x32. + * Bump Standards-Version to 3.9.8, no changes. + * Update watch file for 2.1.0 pre-releases. + * New upstream release candidate. + * Update copyright file, add license & copyright for JPNG_band.cpp. + * Drop java-version.patch, applied upstream. Refresh remaining patches. + * Drop Homepage field from binary packages. + * Update upstream metadata URLs to use HTTPS. + * Update common symbols for 2.1.0~rc1. + + -- Bas Couwenberg Mon, 18 Apr 2016 21:08:37 +0200 + +gdal (2.1.0~beta1+dfsg-1~exp2) experimental; urgency=medium + + * Update symbols for amd64, arm64, armel, armhf, i386, kfreebsd-{amd64,i386}, + hurd-i386, mips, mipsel, powerpc, ppc64el & s390x. + * Drop --with-ruby=no configure option, Ruby support disabled upstream. + * Fix symbols version to include pre-releases. + * Rebuild with libcrypto++6. + + -- Bas Couwenberg Mon, 04 Apr 2016 06:34:54 +0200 + +gdal (2.1.0~beta1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream beta release. + * Update copyright file, changes: + - Update copyright years for Even Rouault + - Add Airbus DS Geo SA, Faza Mahamood & Mikhail Gusev to copyright holders + - Update copyright years for Free Software Foundation, Inc. + - Switch from GPL-2+ to GPL-3+ for config.{sub,guess} + - Add license & copyright for Qhull + * Enable QHull support. + * Enable cryptopp support. + * Drop patches applied upstream. Refresh remaining patches. + * Add patch to bump minimum Java version to 5 for annotations. + * Include additional manpages in gdal-bin. + * Have dh_numpy{,3} act on specific package only. + * Add patch to fix privacy-breach-logo issues in documentation. + * Reorder (build) dependencies and configure options. + + -- Bas Couwenberg Sat, 02 Apr 2016 16:51:24 +0200 + +gdal (2.0.2+dfsg-5) unstable; urgency=medium + + * Build with external libjson-c instead of internal copy. + (LP: #1565475) + * Have dh_numpy{,3} act on specific package only. + * Reorder (build) dependencies and configure options. + + -- Bas Couwenberg Sun, 03 Apr 2016 20:01:55 +0200 + +gdal (2.0.2+dfsg-4) unstable; urgency=medium + + * Disable JasPer support, will be removed from stretch. + (closes: #818198) + * Enable all hardening buildflags, disable pie + which breaks the Python bindings. + + -- Bas Couwenberg Tue, 15 Mar 2016 20:29:28 +0100 + +gdal (2.0.2+dfsg-3) unstable; urgency=medium + + * Add patch to fix segfault when exiting with proper closing of datasource. + (closes: #817146) + * Add patch for 'message' typo. + + -- Bas Couwenberg Tue, 08 Mar 2016 23:59:36 +0100 + +gdal (2.0.2+dfsg-2) unstable; urgency=medium + + * Fix gdal-abi dependency for mips64el symbols. + * Update symbols for alpha, hppa, sparc64 & x32. + + -- Bas Couwenberg Thu, 03 Mar 2016 19:24:09 +0100 + +gdal (2.0.2+dfsg-1) unstable; urgency=medium + + * Update symbols for hurd-i386 & x32. + * Add patches for 'formatted' & 'Remaining' typos. + * Move from experimental to unstable. + + -- Bas Couwenberg Tue, 01 Mar 2016 21:02:59 +0100 + +gdal (2.0.2+dfsg-1~exp2) experimental; urgency=medium + + * Bump Standards-Version to 3.9.7, no changes. + * Update symbols for amd64, arm64, armel, armhf, hppa, i386, + kfreebsd-amd64, kfreebsd-i386, mips, mipsel, mips64el, + powerpc, ppc64, ppc64el, s390x. + * Add symbols for sparc64. + * Drop symbols for ia64 & sparc, ports discontinued. + + -- Bas Couwenberg Fri, 19 Feb 2016 13:57:50 +0100 + +gdal (2.0.2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Drop hardening patch, applied upstream. Refresh remaining patches. + * Add patches for various typos. + * Add upstream patch to fix crash with SQLite 3.10.0. + * Enable parallel builds. + + -- Bas Couwenberg Fri, 12 Feb 2016 19:41:57 +0100 + +gdal (2.0.1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update copyright file, changes: + - Update copyright years & holders + - Drop files section for gcore/gdal_rpcimdio.cpp, removed upstream + - Drop .0 from GPL license shortnames + - Strip trailing whitespace + - Use range notation for copyright years + - Add sbnsearch.c to MIT or LGPL-2+ section + * Drop patches applied upstream, refresh remaining patches. + * Rename libgdal1i to libgdal20 to match SONAME. + * Use packaged libgeotiff & libtiff instead of internal copies. + (closes: #684233) + * Drop libgdal1-dev transitional package, and obsolete Breaks/Replaces. + * Change virtual package from libgdal.so.1-.. format + to gdal-abi--- format. + * Drop custom symbol version script, never updated after 1.8. + * Include Geo::GDAL manpage in libgdal-perl. + + -- Bas Couwenberg Fri, 23 Oct 2015 17:01:12 +0200 + +gdal (1.11.4+dfsg-1~exp2) experimental; urgency=medium + + * Update symbols for hppa, ppc64 & x32, + add symbols for mips64el & sparc64. + * Add upstream patch to fix crash with SQLite 3.10.0. + + -- Bas Couwenberg Wed, 10 Feb 2016 20:39:32 +0100 + +gdal (1.11.4+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Update watch file for final releases. + + -- Bas Couwenberg Mon, 01 Feb 2016 16:14:20 +0100 + +gdal (1.11.4~rc2+dfsg-1~exp2) experimental; urgency=medium + + * Revert Multi-Arch: no change for libgdal-dev. + * Add lintian override for old-style-config-script-multiarch-path. + See: https://lists.debian.org/debian-devel/2016/01/msg00688.html + + -- Bas Couwenberg Tue, 26 Jan 2016 21:30:29 +0100 + +gdal (1.11.4~rc2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release candidate. + * Update watch file for 1.11.4 pre-releases. + * Refresh patches. + * Add patches for various typos. + * Mark libgdal-dev as Multi-Arch: no, due to old style config file. + + -- Bas Couwenberg Tue, 26 Jan 2016 06:10:18 +0100 + +gdal (1.11.3+dfsg-3) unstable; urgency=medium + + * Update Vcs-Git URL to use HTTPS. + * Add upstream patch to fix crash with SQLite 3.10.0. + * Add patches for various typos. + * Add lintian override for old-style-config-script-multiarch-path. + See: https://lists.debian.org/debian-devel/2016/01/msg00688.html + + -- Bas Couwenberg Wed, 10 Feb 2016 19:06:55 +0100 + +gdal (1.11.3+dfsg-2) unstable; urgency=medium + + * Update symbols for alpha, amd64, kfreebsd-amd64, ppc64el & s390x. + + -- Bas Couwenberg Thu, 22 Oct 2015 12:29:38 +0200 + +gdal (1.11.3+dfsg-1) unstable; urgency=medium + + * Update symbols for hppa, hurd-i386 & x32. + * Move from experimental to unstable. + + -- Bas Couwenberg Thu, 22 Oct 2015 00:44:25 +0200 + +gdal (1.11.3+dfsg-1~exp1) experimental; urgency=medium + + * Update watch file to final releases. + * New upstream release. + + -- Bas Couwenberg Wed, 23 Sep 2015 21:05:14 +0200 + +gdal (1.11.3~rc2+dfsg-1~exp1) experimental; urgency=medium + + * Update watch file for 1.11.3 pre-releases. + * New upstream release candidate. + * Drop existant-typo patch, applied upstream. + Refresh remaining patches. + + -- Bas Couwenberg Wed, 16 Sep 2015 22:17:07 +0200 + +gdal (1.11.2+dfsg-3) unstable; urgency=medium + + * Bump minimum required libspatialite-dev to 4.3.0-3~ for liblwgeom support. + * Update Vcs-Browser URL to use HTTPS. + + -- Bas Couwenberg Fri, 28 Aug 2015 10:35:01 +0200 + +gdal (1.11.2+dfsg-2) unstable; urgency=medium + + * Bump minimum required libspatialite-dev to 4.3.0-2~ for circular + dependency change. + * Rebuild for geos transition. + + -- Bas Couwenberg Thu, 27 Aug 2015 16:48:40 +0200 + +gdal (1.11.2+dfsg-1) unstable; urgency=medium + + * Move from experimental to unstable. + + -- Bas Couwenberg Fri, 21 Aug 2015 17:25:49 +0200 + +gdal (1.11.2+dfsg-1~exp7) experimental; urgency=medium + + * Require at least libkml-dev 1.3.0~rc0-3 for boost dependencies. + * Add patch to support pkg-config for the new libkml. + * Add RegisterOGRLIBKML to common symbols file again. + + -- Bas Couwenberg Fri, 21 Aug 2015 11:13:01 +0200 + +gdal (1.11.2+dfsg-1~exp6) experimental; urgency=medium + + * Update symbols for all architectures with GCC 5. + * Drop symbols files for ia64 & sparc. + + -- Bas Couwenberg Thu, 20 Aug 2015 12:11:17 +0200 + +gdal (1.11.2+dfsg-1~exp5) experimental; urgency=medium + + * Update copyright file, changes: + - Drop .0 from GPL license shortnames + - Strip trailing whitespace + - Use range notation for copyright years + - Add sbnsearch.c to MIT or LGPL-2+ section + * Add patch to fix 'existent' typo. + + -- Bas Couwenberg Tue, 18 Aug 2015 23:05:54 +0200 + +gdal (1.11.2+dfsg-1~exp4) experimental; urgency=medium + + * Remove trailing whitespace to fix syntax error in symbols files. + * Use uscan in get-orig-source target. + * Rename library package to libgdal1i because of C++ symbols changes. + + -- Bas Couwenberg Fri, 19 Jun 2015 01:28:42 +0200 + +gdal (1.11.2+dfsg-1~exp3) experimental; urgency=medium + + * Use packaged jquery.js instead of Doxygen copy. + + -- Bas Couwenberg Sat, 23 May 2015 16:43:16 +0200 + +gdal (1.11.2+dfsg-1~exp2) experimental; urgency=medium + + * Update symbols for amd64, arm64, armel, armhf, hurd-i386, i386, + kfreebsd-amd64, kfreebsd-i386, mipsel, powerpc, ppc64el, s390x, sparc & + x32. + + -- Bas Couwenberg Fri, 20 Feb 2015 14:56:48 +0100 + +gdal (1.11.2+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Add upstream metadata. + * Have python*-gdal suggest gdal-bin. + (closes: #774243) + * Update my email to @debian.org address. + * Drop get-orig-source script in favor of uscan + Files-Excluded. + * Refresh patches. + * Update Vcs-Browser URL to use cgit instead of gitweb. + * Update copyright file, group files & copyright by license. + * Update openjpeg build dependency from 1.5 to 2.1. + (closes: #761957) + + -- Bas Couwenberg Thu, 19 Feb 2015 22:24:13 +0100 + +gdal (1.11.1+dfsg-1~exp2) experimental; urgency=medium + + * Set experimental branch in Vcs-Git and gbp.conf. + * Update symbols for amd64, armel, armhf, i386, mips, mipsel, powerpc, + s390x & sparc. + * Don't exclude libhdf4-alt-dev from build dependencies on ppc64. + * Update gdal-symbols.pl to also generate symbols files for new + architectures. + * Add symbols files for alpha, arm64, hppa, hurd-i386, + kfreebsd-amd64, kfreebsd-i386, ppc64, ppc64el & x32. + + -- Bas Couwenberg Fri, 07 Nov 2014 20:53:35 +0100 + +gdal (1.11.1+dfsg-1~exp1) experimental; urgency=medium + + * New upstream release. + * Refresh patches. + * Bump Standards-Version to 3.9.6, no changes. + + -- Bas Couwenberg Sat, 11 Oct 2014 18:11:56 +0200 + +gdal (1.11.0+dfsg1-1~exp5) experimental; urgency=medium + + * Use alternative dependency template for C++ symbols in libgdal1h. + * Update path in copyright file, ogrvrt.xsd moved to data directory. + + -- Bas Couwenberg Wed, 10 Sep 2014 20:27:35 +0200 + +gdal (1.11.0+dfsg1-1~exp4) experimental; urgency=medium + + * Merge changes from 1.10.1+dfsg-8 to support new hdf5 packaging layout. + + -- Bas Couwenberg Fri, 01 Aug 2014 00:08:50 +0200 + +gdal (1.11.0+dfsg1-1~exp3) experimental; urgency=medium + + * Merge changes from 1.10.1+dfsg-7 to include patch by Breno Leitao. + + -- Bas Couwenberg Tue, 29 Jul 2014 22:40:29 +0200 + +gdal (1.11.0+dfsg1-1~exp2) experimental; urgency=low + + [ Marc Deslauriers ] + * Fix ftbfs on arm64 and ppc64el. + + [ Bas Couwenberg ] + * Simplify repacking with tar --delete. + * Update symbols for: amd64, armel, armhf, i386, mips, mipsel, powerpc & + s390x. + * Bump repacked upstream version, repacking was fixed to not delete the + .gitignore file included by upstream. + * Merge changes from 1.10.1+dfsg-6 to include patch by gregor herrmann. + + -- Bas Couwenberg Wed, 09 Jul 2014 00:32:07 +0200 + +gdal (1.11.0+dfsg-1~exp1) experimental; urgency=low + + * New upstream release. + * Update copyright file. + * Drop patch: man, applied upstream. + * Drop patch: unkown-typo, applied upstream. + * Drop patch: hurd-i386-pathmax, file removed upstream. + * Refresh patches. + * Update install paths for new upstream version. + * Add libpcre3-dev build dependency. + * Don't use -Werror=format-security, causes build failure on + ogrsxfdatasource.cpp. + * Add patch to fix 'recommended' typo. + * Update typo patches. + * Install JNI libraries in /usr/lib/jni instead of /usr/lib. + * Fix man page install. + * Also include gdal.pc in dev package. + + -- Bas Couwenberg Sun, 04 May 2014 18:13:46 +0200 + +gdal (1.10.1+dfsg-10) UNRELEASED; urgency=medium + + * Update copyright file, changes: + - Group files & copyright by license + - Drop .0 from GPL license shortnames + - Strip trailing whitespace from end of lines + - Use range notation for copyright years + + -- Bas Couwenberg Sun, 28 Jun 2015 23:35:25 +0200 + +gdal (1.10.1+dfsg-9) unstable; urgency=medium + + * Update my email to use @debian.org address. + * Add patch backporting upstream changes to fix FTBFS with MySQL 5.6. + * Bump Standards-Version to 3.9.6, no changes. + * Add upstream metadata. + * Have python*-gdal suggest gdal-bin. + (closes: #774243) + * Drop get-orig-source script in favor of uscan + Files-Excluded. + * Use uscan in get-orig-source target. + * Update Vcs-Browser URL to use cgit instead of gitweb. + * Remove trailing whitespace to fix syntax error in symbols files. + * Use packaged jquery.js instead of Doxygen copy. + + -- Bas Couwenberg Sun, 28 Jun 2015 15:10:22 +0200 + +gdal (1.10.1+dfsg-8) unstable; urgency=medium + + * Support hdf5 1.8.13 new packaging layout. + Thanks to Gilles Filippini for the patch. + (closes: #756662) + + -- Bas Couwenberg Fri, 01 Aug 2014 00:02:15 +0200 + +gdal (1.10.1+dfsg-7) unstable; urgency=medium + + * Also use autotools_dev to update config.sub and config.guess. + Thanks to Breno Leitao for the patch. + (closes: #756412) + + -- Bas Couwenberg Tue, 29 Jul 2014 22:17:47 +0200 + +gdal (1.10.1+dfsg-6) unstable; urgency=medium + + [ gregor herrmann ] + * Fix "hardcodes /usr/lib/perl5": + - add patch perl-vendor which passes INSTALLDIRS=vendor to Makefile.PL + which nicely drops perl files into suitable directories + - remove all perl juggling around from debian/rules as a result of the + patch + - make debian/libgdal-perl.install executable and use $Config{vendorarch} + there to install the perl files from the expected location + (Closes: #752473) + + -- Bas Couwenberg Tue, 08 Jul 2014 20:44:25 +0200 + +gdal (1.10.1+dfsg-5) unstable; urgency=medium + + * Don't run dh for custom targets. + * Also remove config.log on clean. + * Don't strip .py extension from python scripts, breaks QGIS plugins. + + -- Bas Couwenberg Wed, 02 Apr 2014 00:31:29 +0200 + +gdal (1.10.1+dfsg-4) unstable; urgency=medium + + * Add libcurl-ssl-dev as alternative to libcurl4-gnutls-dev. + (closes: #741015) + * Enable WebP image format support. + (closes: #741004) + * Add gbp.conf to use pristine-tar by default. + * Drop lintian override for debian-watch-may-check-gpg-signature, + shouldn't override pedantic tags. + + -- Bas Couwenberg Fri, 07 Mar 2014 21:58:55 +0100 + +gdal (1.10.1+dfsg-3) unstable; urgency=medium + + * Add patch to fix FTBFS on hurd-i386 which doesn't defined PATH_MAX. + * Update symbols files for version 1.10.1. + * Add script to assist with symbols file updates. + * Add patch to fix 'suppress' typo in manpage. + + -- Bas Couwenberg Sat, 11 Jan 2014 06:36:16 +0100 + +gdal (1.10.1+dfsg-2) unstable; urgency=medium + + * Moved to libhdf5-dev b-d with the right versioning. + (closes: #689426) + * Policy bumped to 3.9.5, no changes. + * Added a Breaks for python-gdal vs gdal-bin due to gdal_retile.1 collision + in pre-1.10 versions distributed in experimental. Just for safety. + + -- Francesco Paolo Lovergine Wed, 18 Dec 2013 13:10:55 +0100 + +gdal (1.10.1+dfsg-1) unstable; urgency=medium + + [ Bas Couwenberg ] + * Change priority to optional. + + [ Francesco Paolo Lovergine ] + * Ready for unstable. + + -- Francesco Paolo Lovergine Tue, 10 Dec 2013 12:59:27 +0100 + +gdal (1.10.1+dfsg-0~exp1) experimental; urgency=low + + [ Bas Couwenberg ] + * New upstream release. + * Add myself to Uploaders. + * Update watch file. + * Remove data files with unclear rights. + (closes: #721343) + * Refresh patches. + * Use canonical URLs for Vcs-* fields. + * Update copyright. + * Refer to quilt instead of dpatch, and fix typos in README.source. + * Add patches to fix various typos. + * Add lintian overrides for hyphen-used-as-minus-sign and + manpage-has-errors-from-man, man pages are automatically generated + with sphinx. + * Use versioned Breaks/Replaces instead of Conflicts/Replaces. + * Bump dephelper compatibility to 9. + * Install java files with mode 644. + * Exclude libgdal-java from dh_makeshlibs, doesn't install in default paths. + * Add doc-base configuration for libgdal-doc. + * Only install NEWS.Debian in libgdal-dev. + (closes: #677693) + * Reinstate doc patch, refresh and update to fix more links. + (closes: #471198) + * Drop temporary fix for #564243, doxygen doesn't generate files with extra + underscores anymore. + * Add patch to add a brief description to {gdal,ogr}_utilities documentation. + (closes: #421653) + * Drop ruby extension for ruby1.8 removal transition. See also: #684433. + (closes: #722383) + * Use minimal dh rules with dh-python, and dh-autoreconf for retooling. + * Add patch to use hardening flags for java and perl bindings. + * Install python scripts without .py extension. + + [ Francesco Paolo Lovergine ] + * Added a missing manpages to python-gdal. + + -- Bas Couwenberg Thu, 03 Oct 2013 23:19:27 +0200 + +gdal (1.10.0-0~exp3) experimental; urgency=low + + * Added netcdf-bin build-dep to get nc-config, as required by current config. + * Fixed gdalpaths patch for version 1.10. + * Fixed symbols files to manage correctly library dependencies. + * Added java support. Thanks Ezequiel Lara Gómez for the initial patch. + Added a pair of new b-deps for that, along with two new patches java*. + (closes: #628022) + + -- Francesco Paolo Lovergine Wed, 26 Jun 2013 11:19:15 +0200 + +gdal (1.10.0-0~exp2) experimental; urgency=low + + * Removed Provides: libgdal1 in debian/control. + + -- Francesco Paolo Lovergine Tue, 25 Jun 2013 16:30:39 +0200 + +gdal (1.10.0-0~exp1) experimental; urgency=low + + * Moved to new LIBKML driver instead of the old KML one. It has a much + better support for complex KML files. (closes: #685695) + * Merged NMU 1.9.0-3.1: + Fix "FTBFS when ruby1.9.1 installed": force building with ruby1.8: + set variables in debian/rules and new patch force-ruby1.8 to ruby1.8. + Thanks to Cédric Boutillier for reviewing and testing this patch. + (closes: #684433) + * Added libarmadillo support. + * Added TIFF/GEOTIFF symbols rename to definitively solve problem of + symbol collisions for programs that both links geotiff/tiff libraries. + This choice implies that the API does not include anymore any *tiff + related functions: changed API declaration. + * Policy bumped to 3.9.4. No changes required. + * New upstream version with many fixes. All patches refreshed. + (closes: #679887) + * Added a Breaks: libgdal1-1.6.0. I don't know if it still makes sense, + but for sure it does not hurt. (closes: #677403) + * Now debian/rules should be parallel-safe for making. Thanks Gregor Hermann + for the patch. (closes: #686014) + * Now it depends explicitly on epsilon >= 0.9.1 by upstream. + (closes: #672738) + + -- Francesco Paolo Lovergine Sun, 04 Apr 2013 11:39:57 +0100 + +gdal (1.9.2-1~exp2) experimental; urgency=low + + * Reintroduced internal symbols hiding for better compatibility + against mixing external geotiff and gdal. See Orfeotoolbox case: + See #558733 again. + + -- Francesco Paolo Lovergine Fri, 29 Mar 2013 14:07:43 +0100 + +gdal (1.9.2-1~exp1) experimental; urgency=low + + [ Jerome Villeneuve Larouche ] + * New upstream release + + [ Francesco Paolo Lovergine ] + * Reintroducing libgdal1-dev as a transitional package to allow r-deps + to build in any environment. + * Removed old dependency on libcurl3-dev for libgdal-dev and added a + preferred dep on libcurl4-gnutls-dev to make lintian happy. + * Added build-{arch|indep} targets in debian/rules. + * Fixed a bit debian/changelog for latest changes. + * Now using libxerces-c-dev as dependency for current library version. + * Policy bumped to 3.9.4. No special changes required. + + -- Francesco Paolo Lovergine Fri, 29 Mar 2013 10:38:40 +0100 + +gdal (1.9.0-1) unstable; urgency=low + + * Ready for sid, starting transition. + * All symfiles updated to latest builds. + * Added dh_numpy call in debian/rules to depend on numpy ABI. + * Policy bumped to 3.9.3, no changes required. + + -- Francesco Paolo Lovergine Mon, 07 May 2012 15:04:42 +0200 + +gdal (1.9.0-1~exp5) experimental; urgency=low + + * Added a build-dep on liburiparser-dev to satisfy configure test. Without + that GDAL reverts to the old KML support anyway :-(. + * Explicitly enabled Armadillo and LZMA supports. + * OpenJPEG is enabled in debian/rules, but still unsupported because current + library is obsolete. GDAL requires at least 1.4. + + -- Francesco Paolo Lovergine Mon, 05 Mar 2012 17:44:59 +0100 + +gdal (1.9.0-1~exp4) experimental; urgency=low + + * Moving from old KML to new libkml based. + + -- Francesco Paolo Lovergine Fri, 02 Mar 2012 14:44:23 +0100 + +gdal (1.9.0-1~exp3) experimental; urgency=low + + * Added b-deps and enabled a few new supports: + Poppler, Armadillo, OpenJPEG, FreeXL and libZMA. + * Revised copyright file for format 1.0. + + -- Francesco Paolo Lovergine Sun, 26 Feb 2012 17:24:24 +0100 + +gdal (1.9.0-1~exp2) experimental; urgency=low + + * Fixed mipsel, mips, powerpc and s390 files for syntax errors that caused + FTBS on all those archs. + * Updated sparc, amd64 and ia64 symbol files to 1.9 series. + * Updated README.source to document symbol versioning and script. + + -- Francesco Paolo Lovergine Thu, 23 Feb 2012 11:53:59 +0100 + +gdal (1.9.0-1~exp1) experimental; urgency=low + + * New upstream release. + * New tool: gdalsrsinfo. + * Dropped patch epsilon. + * All patches refreshed for current version. + * Regenerating all symfiles from scratch. But for the usual stock of + internal C++ changes (with both adding and removing of methods) a couple + of TIFF related C functions have been dropped: + TIFFFindFieldInfo + TIFFFindFieldInfoByName + which is due to Tiff/GeoTiff resyncing against upstream. This is ignored, + but we already introduced a SONAME change, and it will not impact sid + builds and library use. + * Removed superfluous break/replaces against libgdal1- package. + + -- Francesco Paolo Lovergine Tue, 21 Feb 2012 15:28:45 +0100 + +gdal (1.8.1-2~exp3) experimental; urgency=low + + * Fixed .common symbol file to drop conditionals. + + -- Francesco Paolo Lovergine Wed, 23 Nov 2011 14:23:29 +0100 + +gdal (1.8.1-2~exp2) experimental; urgency=low + + * Changed organization of symbol files in one common file and + multiple .symbols.arch file. + * Now normalized to conventional GDAL library name and dropping the Debian + specific versioned naming scheme for the library. + Dropped patch: libname, python. + * Added sparc and mipsel symbol files. + * Updated NEWS file with basic information about changes in the package. + * Removed now obsolete libtool build-dep. + (closes: #639887) + * Now avoid installing superfluous stuff in libgdal-perl. Thanks lintian. + + -- Francesco Paolo Lovergine Tue, 11 Oct 2011 14:41:31 +0200 + +gdal (1.8.1-2~exp1) experimental; urgency=low + + * Introduced per arch symbol files with demangled C++ symbols. + They are all included by the main symbol file after the C symbols. + Provided archs: amd64, armel, i386, ia64, mips, powerpc and s390. + + -- Francesco Paolo Lovergine Wed, 28 Sep 2011 00:22:42 +0200 + +gdal (1.8.1-1) experimental; urgency=low + + [ Aron Xu ] + * Really use libjpeg-dev to allow transition. + (Closes: #629964) + * Build-Depends on libpng-dev instead of libpng12-dev. + * Transition to dh_python2. (Closes: #616821) + + [ Francesco Paolo Lovergine ] + * New upstream release with fixes for 1.8 series. + (closes: #636053, #638073) + * Revised for migration to dh_python2. + (closes: #616821) + * Merged lintian-overrides handling from 1.7 branch. + * This version is already compatible with libdap >= 3.10, no patch needed. + * Still retaining chrpath trick to maintain compatibility against libtool + inner use in swing-enabled bindings. + * Updated debian/watch file to cope with release-candidate versions which + results newer than final ones. + * Added symbol file to track changes in exported symbols from now on. + * The -fvisibility=hidden has been removed. + * Now linking uses a version script to include symbolic versions to all + global symbols. + * Added -Bsymbolic to force binding of global symbols to definition within + the library. This should solve problems in linking against both tiff, + geotiff and gdal. That should have no impact against netcdf, hdf5 and + other common formats. + (closes: #558733) + * Merged a lintian override from 1.7 series for TIFF library embedding. + + -- Francesco Paolo Lovergine Tue, 27 Sep 2011 12:59:27 +0200 + +gdal (1.8.0-2) experimental; urgency=low + + * Patch: symver. Added symbol versioning (GDAL_X.Y) for all symbols + exported by GDAL. + (closes: #558733) + * Patch: spatialite. Added explicit linking to sqlite3 for spatialite. + This is Debian specific, because Debian spatialite does not embed Sqlite + functions as in upstream release. + * Merged with 1.7 series: added epsilon patch to fix now unsupported unnamed + union use. + * Versioned strict build-dependency on libepsilon. + * Depends on libjpeg-dev. + + -- Francesco Paolo Lovergine Thu, 12 May 2011 13:11:06 +0200 + +gdal (1.8.0-1) experimental; urgency=low + + * New upstream release. + * Patchset update for the current major release. + * Added libepsilon support. + * Now debian/copyright has moved to DEP5 format and revised on the basis of + the GDAL LICENSE file. + * Swig generated stuff for perl is now removed just before building, not + at clean time to be more nice against git-bp. + * Added gdallocationinfo installation in gdal-bin. + * Policy bumped to 3.9.2, no changes required. + * Fixed manpages oddities. + (closes: #615535) + * Added some more cleanup instructions. + * Now post-removing rpath in main library as well to avoid libtool tricks at + building time. + + -- Francesco Paolo Lovergine Tue, 26 Apr 2011 17:55:11 +0200 + +gdal (1.7.3-2) unstable; urgency=low + + * Moved to alioth git repository, and changed Vcs-* fields. + * Now using source format 3.0 and quilt for patches. + * Added ${misc:Depends} due to debhelper use. + * Moved to debhelper level 8 which is now recommended default. + * Now adoptin /usr/lib/gdalplugins/X.Y as plugin directory, because + it will be the same used in 1.9 series. Changed patches as required. + + -- Francesco Paolo Lovergine Tue, 22 Feb 2011 15:35:34 +0100 + +gdal (1.7.3-1) unstable; urgency=low + + [ Alan Boudreault ] + * New upstream release with many fixes. + * Added libspatialite-dev dependency for libgdal1-dev. + + [ Francesco Paolo Lovergine ] + * Added sample programs to python-gdal documentation. + * Merged changelog to be ready for true unstable upload. + * Policy bumped to 3.9.1, without changes. + * Added Build-Conflicts against python-setuptools, because it still + has problems at building time. + (closes: #579987) + * Removed unuseful strict versioning in libgdal-doc suggest for libgdal1-1.7.0. + (closes: #580172) + * Added libdap-dev dependency for libgdal1-dev. + (closes: #598346) + * Man pages garbling seems now fixed. + (closes: #598643) + + -- Francesco Paolo Lovergine Tue, 08 Feb 2011 15:05:36 +0100 + +gdal (1.7.2-2) experimental; urgency=low + + * Now enable static linking for proj at configuration time. + (closes: #579989) + * Fixed a couple of configure options not enabled. + * Fixed hdf4 patch. + * Added build-dep on libxml2-dev. + * Added build-dep on libspatialite-dev to support Spatialite as additional + format. + * Now install gdaldem among gdal-bin utilities. + + -- Francesco Paolo Lovergine Fri, 07 May 2010 16:46:03 +0200 + +gdal (1.7.2-1) experimental; urgency=low + + * New upstream release. + * Merged patch doxygen.dpatch. + + -- Francesco Paolo Lovergine Tue, 04 May 2010 10:03:26 +0200 + +gdal (1.7.1-1) experimental; urgency=low + + [ Alan Boudreault ] + * New upstream release. + * Patches updated for 1.7.0. + * Removed patches, applied upstream: cpl_dll. + * Removed pre 1.3.38 swig patch (ogr.py.diff). + + [ Francesco Paolo Lovergine ] + * Now build-dep on netcdf 4 to allow deep testing. + * Policy bumped to 3.8.4 without changes. + + -- Francesco Paolo Lovergine Mon, 19 Apr 2010 18:11:49 +0200 + +gdal (1.6.3-3) unstable; urgency=low + + * Fixed previous dirty workaroud debian/rules for working Doxygen versions. + (closes: #566069) + + -- Francesco Paolo Lovergine Thu, 21 Jan 2010 18:21:18 +0100 + +gdal (1.6.3-2) unstable; urgency=low + + * Addded a couple of useful target in debian/rules to generate ECW/MrSID plugins. + * Fixed gdal-grass tarball name. + (closes: #560019) + * Fixed ecw-grass patch to remove an already provided init function. + * Added a simple workaround for manpages generated with a redundant _ character + by current version of Doxygen. It fixes a FTBS caused by missing manpages. + + -- Francesco Paolo Lovergine Wed, 23 Dec 2009 15:21:21 +0100 + +gdal (1.6.3-1) unstable; urgency=low + + [ Alan Boudreault ] + * New upstream release, with bugs fixing. + * Added MrSID plugins support as useful patch to generate separate + source tarballs. + + [ Francesco Paolo Lovergine ] + * Added ECW plugins support as useful patch to generate separate + source tarballs. + + -- Francesco Paolo Lovergine Tue, 01 Dec 2009 19:37:58 +0100 + +gdal (1.6.2-2) unstable; urgency=low + + * Fixed gdal-grass patch to generate a tarball with a name coherent with + current plugin source package. + * Added a README.source document. + + -- Francesco Paolo Lovergine Fri, 11 Sep 2009 11:29:03 +0200 + +gdal (1.6.2-1) unstable; urgency=low + + * New upstream release, with a bounce of bugs fixing. + * [PATCH] Added gdal-grass.dpatch to add VERSION to the grass plugin + tarball. This is useful to force failing when a binNMU happens while + GDAL is transitioning to a major version. See gdal-grass package to + understand how it is managed. This trick does allow a proper fix + of #544978. + * Removed .egg-info stripping. + + -- Francesco Paolo Lovergine Tue, 08 Sep 2009 16:51:50 +0200 + +gdal (1.6.1-3) unstable; urgency=low + + * Upload to unstable, due to hdf4 -alt support transitioned from experimental. + (closes: #540403) + * Build-dep on libmysqlclient-dev and removed duplicated build-dep. Now -dev + package also depends on the same package. + (closes: #538542) + * Build-dep on libhdf5-serial-dev >= 1.8.3 to be safe about linking HDF5 1.8. + * Ack previous NMU by aba. This version is also compatible with current + swing version. + (closes: #543629, #542968) + * Removed libtool .la file as required by current release goal for squeeze. + * Policy bumped to 3.8.3. + + -- Francesco Paolo Lovergine Mon, 31 Aug 2009 15:51:21 +0200 + +gdal (1.6.1-2) experimental; urgency=low + + * Removed superfluous patches, applied upstream: mysql5.1, swig1338 + * [PATCH] Added cpl_ddl.dpatch to fix missing external declaration. Note that + the default -fvisibility=hidden is propagated into python stuff and other + swig bindings. + (closes: #529745) + * Fixed watch file url. + (closes: #504715) + + -- Francesco Paolo Lovergine Sat, 23 May 2009 12:04:58 +0200 + +gdal (1.6.1-1) experimental; urgency=low + + * New upstream release with many fixes. + * Updated patches: doxygen.dpatch and swig1338.dpatch. + * Added new binary/python tools. + + -- Francesco Paolo Lovergine Mon, 18 May 2009 13:03:04 +0200 + +gdal (1.6.0-4) experimental; urgency=low + + * NOT RELEASED. + * Patch hdf5.dpatch renamed into hdf4.dpatch, sorry. + * The mysql5.1.dpatch is a dirty trick to avoid FTBS due to MySQL 5.1 client + lib headers which collide with g++ headers. This should be fixed at MySQL + level, but at least it allows building. + + -- Francesco Paolo Lovergine Fri, 17 Apr 2009 12:02:35 +0200 + +gdal (1.6.0-3) experimental; urgency=low + + * Fixed rubymakefile.dpatch to also work with libtool 2.2. + (closes: #518495) + * Watch file updated to version 3. + * Updated build-deps to remove obsolete entries. + * Fixed internal tiff choice option at configure time which prevented it to work. + Thanks Even Roualt. + (closes: #521747) + * Removed obsolete Conflicts/Replaces on old gdal versions. + * Moved to libproj-dev build-dependency and recommending proj-bin. + * Moved to libhdf4-alt-dev build-dependency to be compatible with netcdf library. + (closes: #495353) + * [PATCH] Added hdf5.dpatch to link the -alt HDF4 libs. + * Added ODBC support for ESRI personal geo database. + * Policy bumped to 3.8.1. No changes. + * Changed section to ruby in ruby-related packages stanzas, due to + ftpmasters changes. + * Removed obsolete postgresql-dev dependency. + * [PATCH] Added swig1338 to be compatible with Swig 1.3.38 (currently in experimental). + * Swig 1.3.38 has no more problems with ogr.py, so the on-fly patch application trick is now + applied on for past versions in debian/rules. + + -- Francesco Paolo Lovergine Thu, 16 Apr 2009 10:05:53 +0200 + +gdal (1.6.0-2) experimental; urgency=low + + * Fixed gdalpath patch for using gdal16 instead of gdal15. + + -- Francesco Paolo Lovergine Thu, 26 Feb 2009 12:41:03 +0100 + +gdal (1.6.0-1) experimental; urgency=low + + * New upstream release. + (closes: #511874) + * Patchest updated for 1.6.0. + * Removed gcc4.4.dpatch merged upstream. + * Debhelper compatibility level moved to 7. + Changed dh_clean and dh_install usages. + * Deprecated dh_movefiles changed in dh_install. + * Now uses the more capable internal TIFF library which allows BigTIFF + support. + It also fixes http://trac.osgeo.org/gdal/ticket/2486 issue. + Removed libtiff4-dev dependencies. + (closes: #501127) + * [PATCH] doxygen.dpatch: missing gdalwarp.1 man page generation due to moving + of doxygen stuff into source. This will be fixed in 1.6.1. + * Now uses dh_prep instead of deprecated dh_clean -k. + * Some minor clean-ups in debian/rules. + + -- Francesco Paolo Lovergine Mon, 09 Feb 2009 17:32:12 +0100 + +gdal (1.5.3-1) experimental; urgency=low + + * New upstream release. This is a bug fixing release, no changes in API + are included. + Patches merged upstream and removed: + pythonmakefile + eoverflow + sincos + * [PATCH] gcc4.4.dpatch: fixed for gcc 4.4 compatibility. Thanks tbm. + (closes: #505629) + + -- Francesco Paolo Lovergine Fri, 21 Nov 2008 10:53:35 +0100 + +gdal (1.5.2-3) unstable; urgency=low + + * [PATCH] sincos.dpatch: the sincos() function is already defined + in libm. Hopefully this is the only case of a redefinition + of a standard weak function. This is exploited casually only in + case of an optimization because of the reason exposed in + http://www.nabble.com/Re%3A-g.region--g-crashes-in-a-latlon-location-p18579971.html + (closes: #489124) + + -- Francesco Paolo Lovergine Tue, 22 Jul 2008 10:30:00 +0200 + +gdal (1.5.2-2) unstable; urgency=low + + * Updated build-deps: + netcdfg-dev -> libnetcdf-dev + libungif4-dev -> libgif-dev + * Policy bumped to 3.8.0. + * Added build-dep on libexpat1-dev to enable use of Expat library. + * Long descriptions revised. + * [PATCH] New eoverflow.dpatch. + It fixes largefile breakage introduced in recent versions. + See http://trac.osgeo.org/gdal/ticket/2437. + + -- Francesco Paolo Lovergine Wed, 02 Jul 2008 17:27:38 +0200 + +gdal (1.5.2-1) unstable; urgency=low + + * New upstream release. This is a bug fix release. + (closes: #485582) + * Patchset updated: removed max.dpatch, merged upstream. + * Added a gdal-grass stanza in debian/rules to generate the gdal-grass + tarball on fly. + * Added a Suggests for python-gdal in gdal-bin stanza within debian/control. + + -- Francesco Paolo Lovergine Tue, 10 Jun 2008 16:08:05 +0200 + +gdal (1.5.1-5) unstable; urgency=low + + * Installs gdal2tiles.py and other python scripts, previously missing. + Due to dependency from python-gdal extensions, scripts are installed in + that package instead of gdal-bin. + (closes: #484559) + * Removed ogr.py.dpatch for #473912. Fix needs to be applied on fly to + be effective. It also causes a twice build FTBS. Added patch build-dep + to apply ogr.py.diff in debian/rules. + (closes: #473912) + + -- Francesco Paolo Lovergine Fri, 06 Jun 2008 23:15:12 +0200 + +gdal (1.5.1-4) unstable; urgency=medium + + * [PATCH] ogr.py.dpatch added to manage #2187 upstream issue. Thanks Steko. + (closes: #473912) + * [PATCH] gdalpaths.dpatch added to use the same plugins directory + used currently in gdal-grass. It would require a much better approach + upstream. See #2371 upstream bug. Also changed path for share dir path + to /usr/share/gdal15. + (closes: #481263) + + -- Francesco Paolo Lovergine Sun, 18 May 2008 09:55:57 +0200 + +gdal (1.5.1-3) unstable; urgency=low + + * Removed old-python stuff still around in debian/rules. + * [PATCH] pythonmakefile.dpatch to fix wrong interpreter override in 1.5.1 + See #2333 on gdal trac. + (closes: #476657) + * Revised the build/install rules to manage better Swig stuff and + specifically Python bindings. + + -- Francesco Paolo Lovergine Sat, 19 Apr 2008 20:51:48 +0200 + +gdal (1.5.1-2) unstable; urgency=low + + * Moved libxerces27-dev dependency to libxerces-c2-dev in debian/control as + requested by xerces maintainer for migration. + * [PATCH] max.dpatch to fix max/min macros re-definition on some archs + which breaks C++ building. This is taken from GDAL patchest 13700+13701 in trunk. + Thanks DronK. + (closes: #474415) + + -- Francesco Paolo Lovergine Mon, 07 Apr 2008 12:58:56 +0200 + +gdal (1.5.1-1) unstable; urgency=low + + * New upstream release with useful bugfixes. No API/ABI changes, so + retaining package versions. + (closes: #464452) + * Moved build-dep libcurl-dev -> libcurl3-dev in debian/control for etch backports. + * Patch swig.dpatch removed (merged upstream). + * Patch gcc32.dpatch removed (merged upstream). + + -- Francesco Paolo Lovergine Wed, 26 Mar 2008 23:23:00 +0100 + +gdal (1.5.0-4) unstable; urgency=low + + * Fixed removing of .info file in python-central area + * Fixed gcc43.dpatch to manage namespace issue. This is not accepted upstream. + (closes: #462709) + * Updated debian/TODO. + * Forcing regeneration of perl wrappers with current Swig in debian/rules + as suggested by Pabs. + (closes: #466785) + + -- Francesco Paolo Lovergine Fri, 14 Mar 2008 15:57:34 +0100 + +gdal (1.5.0-3) unstable; urgency=low + + * [debian/rules] Removing LICENSE.TXT placed in the data dir. + * [debian/rules] Added explicit python-binding generation previously missing + Now installs files from new locations because 1.5 moved to ng-python + (swig-based) support. (closes: #463077) + * Patch swig.dpatch changed to use the correct python interpreter at building + time as found at configuration time. Old pymod fix removed. + * [debian/control] Changed python-numeric -> python-numpy build-dep due to + new-generation python support. + * [debian/rules] Added missing dh_perl call. + (closes: #463086) + * [debian/rules] Added a info file exclusion at dh_pycentral call. + * [debian/rules] Now removing info file installed in pycentral area. + * Added gcc43.dpatch: remove transform() call. + See http://trac.osgeo.org/gdal/changeset/13615?format=diff&new=13615 for fix. + (closes: #462709) + + -- Francesco Paolo Lovergine Thu, 31 Jan 2008 14:23:29 +0100 + +gdal (1.5.0-2) unstable; urgency=low + + * Moved /usr/share/gdal -> /usr/share/gdal15 in order to avoid conflicting + with previous upstream version. + (closes: #462525) + + -- Francesco Paolo Lovergine Fri, 25 Jan 2008 14:25:21 +0100 + +gdal (1.5.0-1) unstable; urgency=low + + * New upstream release + * Added Vcs-* fields to debian/control + * Policy bumped to 3.7.3 (no changes) + * Ruby stuff does not build correctly with upstream libtool stuff, so + overriding in debian/rules. + See http://trac.osgeo.org/gdal/ticket/2138 for reference about the issue. + * Added a (versioned for safety) build-dep on libtool. + * A group of new binaries added to gdal-bin stuff. + * [PATCH] man.dpatch: + Man pages are not generated by upstream makefile, added .PHONY entry + and explicit generation. + * Minor changes for files installation due to changes upstream. + * Changed man pages removing style at clean time in debian/rules. + + -- Francesco Paolo Lovergine Wed, 09 Jan 2008 09:57:10 +0100 + +gdal (1.4.4-1) unstable; urgency=low + + * New upstream version, which fixes an ABI breakage. + (closes: #452355) + * Changed swig.dpatch because partially merged upstream. + * Removed gcc43.dpatch because merged upstream. + * Added missing swig build-dep. + + -- Francesco Paolo Lovergine Tue, 04 Dec 2007 11:10:37 +0100 + +gdal (1.4.3-1) unstable; urgency=low + + * New upstream release. + This is a bug fixing release without API changes, so retaining current + naming scheme as for previous 1.4 series releases. + * Uses PIC building in Ruby bindings and properly fails in case of + building problems to avoid creating empty packages. Changed rubymakefile.dpatch + for that. + (closes: #450882) + + -- Francesco Paolo Lovergine Thu, 15 Nov 2007 17:19:50 +0100 + +gdal (1.4.2-3) unstable; urgency=low + + * Fixed debian-rules-ignores-make-clean-error lintian warning + * Removes embedded rpath in perl extensions and MakeMaker .packlist files. + + -- Francesco Paolo Lovergine Fri, 19 Oct 2007 23:46:07 +0200 + +gdal (1.4.2-2) unstable; urgency=low + + [ Paul Wise ] + * Switch to new Homepage field + + [ Francesco Paolo Lovergine ] + * Migrated obsolete ${Source-Version} to ${binary:Version} in debian/control + * Added perl and ruby binding and a couple of new binary packages for that. + (closes: #393167) + * Build-deps updated. + * Missing gdal_rasterize binary and python tools added to *.files + * Missing man pages added to *.files + * Added build dependency for install target in rules. + * Fixed swig/perl/Makefile.PL on fly via libname.dpatch to build correctly perl binding. + * Added debian/TODO file + * Added patch rubymakefile.dpatch to fix ruby module building. + + -- Francesco Paolo Lovergine Tue, 16 Oct 2007 12:16:16 +0200 + +gdal (1.4.2-1) unstable; urgency=low + + * New upstream version. Still an upstream fix without API changes. + * Removed obsolete postgresql-dev dependency. + (closes: #429974) + + -- Francesco Paolo Lovergine Mon, 03 Sep 2007 17:09:40 +0200 + +gdal (1.4.1-6) unstable; urgency=low + + * New patch gcc43.dpatch, to be compliant with gcc 4.3. Thanks Martin Michlmayr. + (closes: #419827) + * Revised libgdal1-dev dependencies due to libtool .la file. Thanks Kurt Roeckx. + (closes: #421992) + * Removed fake libsqlite0-dev build-dep. + + -- Francesco Paolo Lovergine Fri, 18 May 2007 22:28:24 +0200 + +gdal (1.4.1-5) unstable; urgency=low + + * libcfitsio3 library is now GPL on Debian, so disabled due to incompatibility with GDAL copyright. + (closes: #422537) + * Added a libhdf5-serial-dev dependency for libgdal1-dev. + (closes: #421992) + * Re-introduced libcurl4-dev build-dep, now in unstable. + * Added doc.dpatch for cross-linking html documentation in libgdal-doc. + (closes: #421655) + + -- Francesco Paolo Lovergine Sat, 12 May 2007 16:33:56 +0200 + +gdal (1.4.1-4) unstable; urgency=medium + + * New patch swig.dpatch to use a swig 1.1 version for gdal_warp.c. + (closes: #420706) + * New build also resolves the indirect dependency issue with libgnutls + (closes: #421434) + + -- Francesco Paolo Lovergine Mon, 30 Apr 2007 11:34:37 +0200 + +gdal (1.4.1-3) unstable; urgency=medium + + * Added OGDI support: new patch ogdi.dpatch + * This build should finally link current jasper 1.900.1 + + -- Francesco Paolo Lovergine Sat, 28 Apr 2007 08:54:51 +0200 + +gdal (1.4.1-2) unstable; urgency=high + + * Fixed rules file for libgdal-1.4.0 + + -- Francesco Paolo Lovergine Sat, 21 Apr 2007 20:36:47 +0200 + +gdal (1.4.1-1) unstable; urgency=low + + * New upstream version. Package names are not changed in respect with 1.4.0 + and in derogation with current gdal migration policy for debian-gis + because there are not changes to C/C++ API. + + -- Francesco Paolo Lovergine Sun, 8 Apr 2007 11:31:07 +0200 + +gdal (1.4.0-2) unstable; urgency=low + + * Moved header files under /usr/include/gdal. + * Added missing libjasper-dev dependency to libgdal1-dev. + * Added an alternate libcurl-dev build-dep. + + -- Francesco Paolo Lovergine Sun, 8 Apr 2007 11:18:33 +0200 + +gdal (1.4.0-1) experimental; urgency=low + + * New upstream version. Moved to libgdal1-dev package, which allows rebuilds + of dependent packages without source changes. It is currently superfluous + changing the -dev package at every new release because we do not support + many different versions of the gdal lib. + * libname patch updated. + * Removed obsolete patches. + * debian/rules: removed previous hack for gdal-config. Now DESTDIR is managed correctly + in building scripts. + * Moved to libcfitsio3-dev|libcfitsio-dev build-dep to retain source back-compatibility with + etch and preferring the current library version. + (closes: #413126) + * Added missing sqlite3 and curl4 libraries support. + * Moved to libjasper-dev|libjasper-1.701-dev to retain source compatibility + with the old library version. + * Added libhd5-serial-dev build-dep to support both HDF4/5. + + -- Francesco Paolo Lovergine Mon, 5 Mar 2007 15:27:09 +0100 + +gdal (1.3.2-5) UNRELEASED; urgency=low + + * debian/watch: fixed. + + -- Fabio Tranchitella Fri, 9 Feb 2007 12:18:49 +0100 + +gdal (1.3.2-4) unstable; urgency=medium + + * Now copies build-time gdal-config at install-time. + (closes: #385747) + * Removed Jon Saints and added Paul Wise to Uploaders. + + -- Francesco Paolo Lovergine Tue, 30 Jan 2007 17:45:14 +0100 + +gdal (1.3.2-3) unstable; urgency=high + + * Urgency high: this release fixes two RC bugs. + * debian/rules: moved dh_pycentral before dh_builddeb, this adds postinst + and prerm maintainer scripts. (Closes: #385460) + * debian/control: added missing depends for libgeos-dev, + libmysqlclient15-dev for libgdal1-1.3.2-dev. (Closes: #401162) + + -- Fabio Tranchitella Fri, 22 Dec 2006 16:57:54 +0100 + +gdal (1.3.2-2) unstable; urgency=low + + * Added missing gdal1-1.3.1(-dev) conflicts/replaces to debian/control to + prevent dist-upgrade errors. + + -- Francesco Paolo Lovergine Tue, 8 Aug 2006 14:08:32 +0200 + +gdal (1.3.2-1) unstable; urgency=low + + [ Francesco P. Lovergine ] + + The "doing-it-yourself-is-better" release. + + * New upstream release. + (closes: #370441) + As stated previously, changed package name for + a smooth C++ transition in case of (undocumented) API/ABI changes. + Changed control and other files as consequence for 1.3.1 -> 1.3.2 transition. + - Patch revised: + libname.dpatch + - Patches removed: + 351372_mipsel_ftbfs.dpatch (applied upstream) + 357189_gcc4.1_ftbfs.dpatch (idem) + 360389_amd64_ftbfs.dpatch (better done by upstream) + - New patch: + ogrili2layer.cpp.dpatch (gcc 4.1 STL compatibility) + * Policy bumped to 3.7.2. No changes. + * Removed a couple of old *.docs and *.files files in debian dir. + * Added mysql support. + * Moved to new python policy. Note that python-gdal provides both modules + and an extension, so quite a few changes are required all around. + See http://wiki.debian.org/DebianPython/NewPolicy for information about + the matter. + -- NOTE FOR BACKPORTERS: DO NOT EVEN TRY THAT, WITHOUT BACKPORTING ALL THE NEW PYTHON FRAMEWORK -- + (Closes: #373433) + + -- Francesco Paolo Lovergine Tue, 20 Jun 2006 15:06:13 +0200 + +gdal (1.3.1-6) unstable; urgency=high + + * Switch from libxerces26-dev to libxerces27-dev (Closes: #368914) + + -- Paul Wise Sat, 27 May 2006 12:55:30 +0800 + +gdal (1.3.1-5) unstable; urgency=low + + [ Paul Wise ] + * Fix GCC 4.1 FTBFS with patch from Martin Michlmayr. Closes: #357189 + + [ Francesco Paolo Lovergine ] + * Fix Unix ODBC FTBS with patch by me. Closes: #360389 + * Added versioned build-dep on unixodbc-dev for safety, just in case. + + -- Francesco Paolo Lovergine Tue, 4 Apr 2006 00:14:56 +0200 + +gdal (1.3.1-4) unstable; urgency=low + + [ Paul Wise ] + * Fix FTBFS on mipsel with patch from upstream. Closes: #351372 + + [ Petter Reinholdtsen ] + * Add myself as uploader. + * Acknowledge NMU. (Closes: #321587) + + -- Petter Reinholdtsen Fri, 10 Feb 2006 22:46:34 +0100 + +gdal (1.3.1-3) unstable; urgency=high + + [ Francesco Paolo Lovergine ] + * Revised rules to use binary-indep for its -doc package. + * Rebuilt to link the correct netcdf packages, which apparently did break + something and renders libgdal and all its rdepends uninstallable. + Sigh, netcdfg3 moved to libnetcdf3 but I would appreciate notifications + to all interested parties or proper mass bug filling... + + -- Francesco Paolo Lovergine Wed, 1 Feb 2006 15:08:30 +0100 + +gdal (1.3.1-2) unstable; urgency=low + + [ Petter Reinholdtsen ] + * Add Francesco Paolo Lovergine as uploader, to make sure the next + upload isn't seen as a non-maintainer upload. + + [ Francesco Paolo Lovergine ] + * Missed patched reverting, anyway moving to dpatch which is more robust for + patch management in case of build failures and re-builds. + (closes: #349562). Changed control and rules files as consequence. + + -- Francesco Paolo Lovergine Tue, 24 Jan 2006 10:56:55 +0100 + +gdal (1.3.1-1) unstable; urgency=low + + [ Steve Halasz ] + * Switch to team maintenance by the Debian GIS Project. + This is _not_ hijacking, Silke is no more active on this package + and passed the package to the team. + * New upstream release + - Don't crash on shapefiles without features (Closes: #309165) + * Build-dep on libpq-dev | postgresql-dev for postgresql transition + * Remove build-dep on postgresql-client + * Make libgdal-dev depend on a number of -dev packages so that + packages depending on libgdal-dev don't have to depend on them + * Change library package names to libgdal1-1.3.1 / libgdal1-1.3.1-dev + to reflect C++ ABI change that will be expected with every new + version. The C API is stable (SONAME 1), but unfortunately both + C and C++ API are merged in the same library by upstream. + See http://lists.alioth.debian.org/pipermail/pkg-grass-general/2005-December/001565.html + for a few details about the C++ API and ABI saga. + + [ Paul Wise ] + * Add homepages to the package descriptions + + [ Francesco Paolo Lovergine ] + * Added 02_libname.patch to add the version to the lib name. This will + allow cohexistence of more version of the library without glitches. + + -- Francesco Paolo Lovergine Sat, 21 Jan 2006 13:14:06 +0100 + +gdal (1.2.6-1.3) unstable; urgency=medium + + * Non-maintainer upload. + * Medium-urgency upload for RC bugfix. + * Change package name from libgdal1c2 to libgdal1c2a for the C++ mt + allocator ABI change, and conflict/replace libgdal1c2 accordingly. + Closes: #339163. + * Build-depend on libgeos-dev (>= 2.1.4-2) to get the matching ABI. + + -- Steve Langasek Tue, 29 Nov 2005 05:06:47 -0800 + +gdal (1.2.6-1.2) unstable; urgency=low + + * Fix broken library building introduced by my last NMU. (Closes: #322664) + * Moved GCC 4 patch into debian/patches/01_gcc4.patch, based on + patch from Stephan Hermann and Ubuntu. Updated rules to use it. + * Add Conflicts and Replaces on libgdal1 for libgdal1c2 to ease upgrades. + + -- Petter Reinholdtsen Fri, 12 Aug 2005 08:11:40 +0200 + +gdal (1.2.6-1.1) unstable; urgency=low + + * Non-maintainer upload to move to new C++ ABI. (Closes: #321587) + * Rename library package from libgdal1 to libgdal1c2. + * Add forward declaration of ILWISDataset in + frmts/ilwis/ilwisdataset.h to make GCC 4.0 happy. + + -- Petter Reinholdtsen Sat, 6 Aug 2005 11:57:48 +0200 + +gdal (1.2.6-1) unstable; urgency=high + + * New upstream release + * Made python-gdal explicitly dependend on current gdal-version + (Closes: #291361) + * Added pct2rgb.py and gdal_merge.py to python-gdal + * Changed xerces dependency from libxerces21 to libxerces26 + (Closes: #301710 and Closes: #301650) + * Added link from /usr/include/gdal to /usr/include (Closes:#286709). + * Already in 1.2.5.-1: Added geos-support + + -- Silke Reimer Mon, 4 Apr 2005 19:04:21 +0200 + +gdal (1.2.5-1) unstable; urgency=low + + * New upstream release (Closes: #280343) + * Added gdaltindex and gdal_contour in debian/gdal-bin.files + (Closes: #278539) + + -- Silke Reimer Thu, 25 Nov 2004 18:06:07 +0100 + +gdal (1.2.1-1) unstable; urgency=low + + * New upstream release (Closes: #258367) + * Added flag -V'libgdal1 (>=1.2.0) to solve incompatibility between + libgdal1-1.2.x and libgdal-1.2+cvs031111 (Closes: #254344) + * Add support for jpeg2000 (jasper), netcdf and sqlite. + * Move tiff support to external library (finally added to debian!)(Thanks + Alessandro for your hint!) + * debian/control + * debian/changelog + + -- Silke Reimer Thu, 25 Nov 2004 18:05:53 +0100 + +gdal (1.2.0-1) unstable; urgency=low + + * New upstream release + * Use manpages from upstream + * Changed package requirements for libgdal1-dev: added virtual package + libgdal-dev, added dependency on libc6-dev and unixodbc-dev + + -- Silke Reimer (MoinMoin) Mon, 8 Mar 2004 18:05:58 +0100 + +gdal (1.2+cvs.031111-1) unstable; urgency=low + + * New upstream cvs snapshot. This should fix the building failure + on arm, powerpc, mipsel and s390 due to "invalid conversion from + `int8*' to `const char*'" + * add odbc support to debian package. + * switch on xerces support. + + + -- Silke Reimer (MoinMoin) Wed, 12 Nov 2003 10:21:13 +0100 + +gdal (1.2+cvs.031016-1) unstable; urgency=low + + * Take maintainership + * added man pages + * added libtool patch to debian/rules to avoid linking with rpath + * changed last line of pymod/GNUmakefile because otherwise all + files within pymod would be deleted when building package with + fakeroot + + -- Silke Reimer (MoinMoin) Fri, 17 Oct 2003 11:14:34 +0200 + +gdal (1.2+0pre1) unstable; urgency=low + + * New upstream cvs snapshot with proper soname versioning. + Getting ready for the upcoming 1.2.0. + * Add xerces support. + * Get the package generally in shape for being sponsored into Debian. + * Hand package maintainership over to Silke. + + -- Alessandro Amici (devel) Fri, 26 Sep 2003 00:43:14 +0200 + +gdal (1.1.9-1) unstable; urgency=low + + * New upstream release with a lot of new formats and features. + * Fix the --libs option of the installed gdal-config. + * Many correctness and style fixes to debian/rules. The aim is to have + the source package to build cleanly on woody as well. + * Change the build dependencies to present a woody alternative to sid-only + packages. + + -- Alessandro Amici (devel) Mon, 28 Jul 2003 23:18:55 +0200 + +gdal (1.1.8+030610-1) unstable; urgency=low + + * New cvs snapshot with improved handling of html documentation. + * Split libgdal-doc out of libgdal1-dev. + * Add html documentation for ogr. + * Add postgresql support. + * Set python dependencies to python2.2 (and add python2.2-numeric) + * Recommend proj (accessed via dlopen). + + -- Alessandro Amici (devel) Tue, 10 Jun 2003 16:18:17 +0200 + +gdal (1.1.8+030521-1) unstable; urgency=low + + * New cvs snapshot with support for custom shared library soname. + * Build the gdal shared library with debian compliant file name and soname. + See the README.Debian for reasons and caveats. + * Rename the main packages to libgdal1 (OK, I learned the hard way how + important package names are!). + * Change the upstream version definition to $(version)+$(cvsdate). + + -- Alessandro Amici (devel) Thu, 22 May 2003 19:33:54 +0200 + +gdal (1.1.8-030518+1) unstable; urgency=low + + * Initial release. + * libgdal.1.1.so is not a standard shared library. + * Man pages are missing. + * A few files are missing from the html documentation. + + -- Alessandro Amici (devel) Sun, 18 May 2003 18:05:12 +0200 diff --git a/gdal/debian/compat b/gdal/debian/compat new file mode 100644 index 000000000000..ec635144f600 --- /dev/null +++ b/gdal/debian/compat @@ -0,0 +1 @@ +9 diff --git a/gdal/debian/control b/gdal/debian/control new file mode 100644 index 000000000000..aef8fdef430a --- /dev/null +++ b/gdal/debian/control @@ -0,0 +1,368 @@ +Source: gdal +Maintainer: Debian GIS Project +Uploaders: Francesco Paolo Lovergine , + Bas Couwenberg +Section: science +Priority: optional +X-Python3-Version: 3.7 +Build-Depends: debhelper (>= 9.20160114), + dh-autoreconf, + dh-python, + d-shlibs, + default-jdk-headless, + doxygen, + graphviz, + ant, + chrpath, + libarmadillo-dev, + libcharls-dev, + libcurl4-openssl-dev, + libdap-dev, + libdoxygen-filter-perl, + libepsilon-dev (>= 0.9.1-1~), + libexpat1-dev, + libfreexl-dev (>= 1.0.0), + libfyba-dev, + libgeos-dev, + libgif-dev, + libhdf4-alt-dev, + libhdf5-dev (>= 1.8.8), + libjpeg-dev, + libjson-c-dev, + libkml-dev, + liblzma-dev, + libmodern-perl-perl, + default-libmysqlclient-dev, + libnetcdf-dev (>= 1:4.0.0), + libogdi3.2-dev, + libpcre3-dev, + libpng-dev, + libpoppler-private-dev, + libpq-dev, + libproj-dev, + libqhull-dev, + libspatialite-dev, + libsqlite3-dev, + liburiparser-dev, + libwebp-dev, + libxerces-c-dev, + libxml2-dev, + libzstd-dev, + lsb-release, + netcdf-bin, + patch, + python-all-dev (>= 2.6.6-3~), + python-numpy, + python3.7-dev, + swig, + unixodbc-dev (>= 2.2.11), + zlib1g-dev, + libssl-dev, + libesri-filegdb, + libkakadu, + libkea1.4 +Build-Conflicts: automake1.11, + python-setuptools +Standards-Version: 4.3.0 +Vcs-Browser: https://salsa.debian.org/debian-gis-team/gdal +Vcs-Git: https://salsa.debian.org/debian-gis-team/gdal.git +Homepage: http://www.gdal.org/ + +Package: libgdal20 +Architecture: any +Section: libs +Depends: gdal-data (>= ${source:Version}), + libesri-filegdb, + libkakadu, + ${shlibs:Depends}, + ${misc:Depends} +Recommends: proj-bin +Breaks: libgdal1h (<< 2.0) +Provides: gdal-abi-2-4-0 +Description: Geospatial Data Abstraction Library + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports many popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains the shared library. + +Package: libgdal-dev +Architecture: any +Section: libdevel +Depends: libgdal20 (= ${binary:Version}), + libc6-dev, + libarmadillo-dev, + libcharls-dev, + libcurl4-openssl-dev, + libdap-dev, + libepsilon-dev, + libexpat1-dev, + libfreexl-dev, + libfyba-dev, + libgeos-dev, + libgif-dev, + libhdf4-alt-dev, + libhdf5-dev, + libjpeg-dev, + libjson-c-dev, + libkml-dev, + libltdl-dev, + liblzma-dev, + default-libmysqlclient-dev, + libnetcdf-dev, + libogdi3.2-dev, + libpcre3-dev, + libpng-dev, + libpoppler-private-dev, + libpq-dev, + libproj-dev, + libqhull-dev, + libspatialite-dev, + libsqlite3-dev, + liburiparser-dev, + libwebp-dev, + libxerces-c-dev, + libxml2-dev, + libzstd-dev, + unixodbc-dev, + libesri-filegdb, + libkakadu, + ${misc:Depends} +Suggests: libgdal-doc +Description: Geospatial Data Abstraction Library - Development files + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports many popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains the files needed to develop a software that + will use the GDAL/OGR (headers, static objects, configuration script). + +Package: libgdal-doc +Architecture: all +Multi-Arch: foreign +Section: doc +Depends: ${misc:Depends} +Suggests: libgdal20 +Description: Documentation for the Geospatial Data Abstraction Library + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains documentation for GDAL/OGR API. + +Package: gdal-bin +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Suggests: libgdal-grass, + python-gdal +Breaks: gdal-bin (<< 1.10.0-0~) +Description: Geospatial Data Abstraction Library - Utility programs + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains utility programs, based on GDAL/OGR library, + namely gdal_translate, gdalinfo, gdaladdo, gdalwarp, ogr2ogr, ogrinfo, + ogrtindex. + +Package: gdal-data +Architecture: all +Multi-Arch: foreign +Depends: ${misc:Depends} +Description: Geospatial Data Abstraction Library - Data files + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains the GDAL data files. + +Package: python-gdal +Architecture: any +Section: python +Depends: ${python:Depends}, + ${shlibs:Depends}, + ${misc:Depends} +Suggests: gdal-bin +Provides: ${python:Provides} +Description: Python bindings to the Geospatial Data Abstraction Library + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains Python bindings for GDAL/OGR library and + a set of additional command line tools. + +Package: python3-gdal +Architecture: any +Section: python +Depends: ${python3:Depends}, + ${shlibs:Depends}, + ${misc:Depends} +Suggests: gdal-bin +Provides: ${python3:Provides} +Description: Python 3 bindings to the Geospatial Data Abstraction Library + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains Python 3 bindings for GDAL/OGR library. + +Package: libgdal-perl +Architecture: any +Section: perl +Depends: ${perl:Depends}, + ${shlibs:Depends}, + ${misc:Depends} +Suggests: libgdal-perl-doc +Description: Perl bindings to the Geospatial Data Abstraction Library + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains Perl bindings for GDAL/OGR library. + +Package: libgdal-perl-doc +Architecture: all +Depends: ${misc:Depends} +Breaks: libgdal-perl (<< 2.2.3+dfsg-2~exp1) +Replaces: libgdal-perl (<< 2.2.3+dfsg-2~exp1) +Section: doc +Description: Documentation for GDAL Perl bindings + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains the documentation of the Perl bindings for + GDAL/OGR library. + +Package: libgdal-java +Architecture: any +Section: java +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Java bindings to the Geospatial Data Abstraction Library + GDAL is a translator library for raster geospatial data formats. + As a library, it presents a single abstract data model to the + calling application for all supported formats. The related OGR + library (which lives within the GDAL source tree) provides + a similar capability for simple features vector data. + . + GDAL supports 40+ popular data formats, including commonly used + ones (GeoTIFF, JPEG, PNG and more) as well as the ones used in + GIS and remote sensing software packages (ERDAS Imagine, + ESRI Arc/Info, ENVI, PCI Geomatics). Also supported many remote + sensing and scientific data distribution formats such as HDF, + EOS FAST, NOAA L1B, NetCDF, FITS. + . + OGR library supports popular vector formats like ESRI Shapefile, + TIGER data, S57, MapInfo File, DGN, GML and more. + . + This package contains Java bindings for GDAL/OGR library. diff --git a/gdal/debian/copyright b/gdal/debian/copyright new file mode 100644 index 000000000000..bb07d0ae5acf --- /dev/null +++ b/gdal/debian/copyright @@ -0,0 +1,1341 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: GDAL/OGR +Upstream-Contact: The GDAL/OGR project team, Frank Warmerdam +Source: http://www.gdal.org/ +Comment: Several data files with unclear rights are removed to create + the +dfsg version. + . + gdal/data/cubewerx_extra.wkt + Derived from definitions distributed by Cubewerx. + See http://trac.osgeo.org/gdal/ticket/2165 + . + gdal/data/ecw_cs.wkt + Derived via much processing from ERMapper GDT definitions. + See http://trac.osgeo.org/gdal/ticket/2162 + . +Files-Excluded: data/cubewerx_extra.wkt + data/ecw_cs.wkt + +Files: * +Copyright: 2007-2018, Even Rouault + 2009-2018, Martin Landa + 2013-2018, NextGIS + 2014, 2018, Oslandia + 2015-2018, Planet Labs + 2016-2018, Dmitry Baryshnikov + 2016, 2018, Andrew Sudorgin + 2006-2008, 2010, 2015, 2018, Ivan Lucena + 2018, Azavea + 2018, Dr. James McClain + 2018, Liu Yimin + 2018, Paul Austin + 2005, 2007, 2017, Ari Jolma + 2017, Alan Thomas + 2017, DigitalGlobe + 2017, Finnish Environment Institute + 2017, Hobu Inc + 2016, Alexandr Borzykh + 2016, Avyav Kumar Singh + 2016, Julien Michel + 2016, Lucian Plesea + 2016, Piers Titus van der Torren + 2016, SatCen - European Union Satellite Centre + 2005, 2007-2008, 2010, 2013, 2015, Tamas Szekeres + 2015, Airbus DS Geo SA + 2015, European Union (European Environment Agency) + 2015, European Union Satellite Centre + 2015, Faza Mahamood + 2015, Sean Gillies + 2010, 2013-2014, Kyle Shannon + 2008-2014, Antonio Valentino + 2004, 2014, Pirmin Kalberer, Sourcepole AG + 2013-2014, ZJU Walkinfo Technology Corp., Ltd + 2014, François Hissel + 2014, Matthieu Volat + 2014, Mikhail Gusev + 2014, Norman Barker + 2014, Sebastian Walter + 1998-2013, Frank Warmerdam + 2009-2013, Jorge Arevalo + 2009-2013, David Zwarg + 2011, 2013, Paul Ramsey + 2013, Alan Boudreault + 2013, EOX IT Services, GmbH + 2012, Andrew Migal + 2012, Jean-Claude Repetto + 2012, LibKEA + 2012, Roger Veciana + 2010-2011, Martin Lambers + 2011, Adam Estrada + 2011, Alessandro Furieri + 2011, Ben Ahmed Daho Ali + 2005-2007, 2010, Daylon Graphics Ltd + 2006-2007, 2010, Mateusz Loskot + 2009-2010, PCI Geomatics, 50 West Wilmot Street, Richmond Hill, Ont, Canada + 2009-2010, Ragi Yaser Burhum + 2010, Brian Case + 2010, Chaitanya kumar CH + 2010, Chris Yesson + 2010, Constantin Jucovschi + 2010, ESRI + 2010, Seth Price + 2010, SPADAC Inc. + 2010, Thomas Hirsch + 2002-2009, Andrey Kiselev + 2009, Leonardo de Paula Rosa Piga + 2009, Volker Wichmann + 1998-2008, Daniel Morissette + 2006, 2008, Henrik Johansson + 2007-2008, Howard Butler + 2008, Chris Toney + 2008, Her majesty the Queen in right of Canada as represented by the Canadian Nuclear Safety Commission + 2008, Klokan Petr Pridal + 2008, Shawn Gervais + 2008, Xiuguang Zhou (ESRI) + 2004, 2007, ITC + 2005, 2007, Kevin Ruland + 2006-2007, Waypoint Information Technology + 2007, Adam Guernsey + 2007, Adam Nowacki + 2007, Andrea Aime + 2007, Chris Schmidt + 2007, Christian Mueller + 2007, Geoconcept and IGN + 2007, Jens Oberender + 2007, Philippe P. Vachon + 2006, Benjamin Collins + 2006, Christopher Condit + 2006, James Flemer + 2006, Kevin Locke + 2006, MapShots Inc (www.mapshots.com) + 2006, Oleg Semykin + 2006, The MITRE Corporation + 2005, Benjamin Simon + 2005, Daniel Wallner + 2005, Frans van den Bergh + 2005, Radim Blazek + 2005, Sam Gillingham + 2005, Vexcel Corp + 2004, Kor de Jong + 2004, VIZRT Inc + 1999-2003, Stephane Villeneuve + 2003, Applied Coherent Technology Corporation (www.actgate.com) + 2003, OPeNDAP, Inc + 1999, 2001-2002, Safe Software Inc. + 2000-2002, Avenza Systems Inc, http://www.avenza.com/ + 2002, i3 - information integration and imaging, Fort Collin,CO + 2002, Mark Phillips + 2000-2001, Atlantis Scientific Inc + 2001, Keyhole, Inc. + 2001, Simon Perkins + 2000, Derrick J Brashear + 1999, Intergraph Corporation + 1999, Les Technologies SoftMap Inc + 1998, Global Geomatics + 1992, Michigan State University + PCRaster owners +License: Expat + +Files: alg/internal_libqhull/* +Copyright: 1993-2012, C.B. Barber + 1993-2012, The National Science and Technology Research Center for + Computation and Visualization of Geometric Structures + (The Geometry Center) University of Minnesota +License: Qhull + +Files: apps/gdaldem_lib.cpp +Copyright: 2006, 2009, Matthew Perry + 2009-2013, Even Rouault +Comment: Portions derived from GRASS 4.1 (public domain) See + http://trac.osgeo.org/gdal/ticket/2975 for more information regarding + history of this code +License: Expat + +Files: data/esri_epsg.wkt + data/esri_extra.wkt +Copyright: 1999-2018, Esri Inc. +License: Apache-2.0 + +Files: frmts/aigrid/aigccitt.c +Copyright: 1990-1997, Sam Leffler + 1991-1997, Silicon Graphics, Inc + 2002, Frank Warmerdam + 2009-2013, Even Rouault +License: HPND-p-sl-sgi + +Files: frmts/gif/giflib/* +Copyright: 1989-1990, Gershon Elber + 1992, 1996-1997, Eric S. Raymond + 1998, Toshio Kuratomi +License: Expat + +Files: frmts/grib/degrib/* +Copyright: NOAA NWS +License: public-domain + The degrib and g2clib source code are modified versions of code produced + by NOAA NWS and are in the public domain subject to the following + restrictions: + . + http://www.weather.gov/im/softa.htm + . + DISCLAIMER The United States Government makes no warranty, expressed or + implied, as to the usefulness of the software and documentation for any + purpose. The U.S. Government, its instrumentalities, officers, employees, + and agents assumes no responsibility (1) for the use of the software and + documentation listed below, or (2) to provide technical support to users. + . + http://www.weather.gov/disclaimer.php + . + The information on government servers are in the public domain, unless + specifically annotated otherwise, and may be used freely by the public so + long as you do not 1) claim it is your own (e.g. by claiming copyright for + NWS information -- see below), 2) use it in a manner that implies an + endorsement or affiliation with NOAA/NWS, or 3) modify it in content and + then present it as official government material. You also cannot present + information of your own in a way that makes it appear to be official + government information.. + . + The user assumes the entire risk related to its use of this data. NWS is + providing this data "as is," and NWS disclaims any and all warranties, + whether express or implied, including (without limitation) any implied + warranties of merchantability or fitness for a particular purpose. In no + event will NWS be liable to you or to any third party for any direct, + indirect, incidental, consequential, special or exemplary damages or lost + profit resulting from any use or misuse of this data. + . + As required by 17 U.S.C. 403, third parties producing copyrighted works + consisting predominantly of the material appearing in NWS Web pages must + provide notice with such work(s) identifying the NWS material incorporated + and stating that such material is not subject to copyright protection. + +Files: frmts/gtiff/tif_float.c + frmts/gtiff/tif_float.h +Copyright: 2002, Industrial Light & Magic, a division of Lucas Digital Ltd. LLC + 2005, Andrey Kiselev + 2010, Even Rouault +License: BSD-3-Clause + +Files: frmts/gtiff/libgeotiff/geo_free.c + frmts/gtiff/libgeotiff/geo_get.c + frmts/gtiff/libgeotiff/geo_keyp.h + frmts/gtiff/libgeotiff/geokeys.h + frmts/gtiff/libgeotiff/geo_names.c + frmts/gtiff/libgeotiff/geonames.h + frmts/gtiff/libgeotiff/geo_new.c + frmts/gtiff/libgeotiff/geo_print.c + frmts/gtiff/libgeotiff/geo_set.c + frmts/gtiff/libgeotiff/geotiff.h + frmts/gtiff/libgeotiff/geotiffio.h + frmts/gtiff/libgeotiff/geo_tiffp.c + frmts/gtiff/libgeotiff/geo_tiffp.h + frmts/gtiff/libgeotiff/geovalues.h + frmts/gtiff/libgeotiff/geo_write.c + frmts/gtiff/libgeotiff/xtiff.c + frmts/gtiff/libgeotiff/xtiffio.h +Copyright: 1995, Niles D. Ritter +License: public-domain + Permission granted to use this software, so long as this copyright + notice accompanies any products derived therefrom. + +Files: frmts/gtiff/libtiff/t4.h + frmts/gtiff/libtiff/tif_aux.c + frmts/gtiff/libtiff/tif_close.c + frmts/gtiff/libtiff/tif_codec.c + frmts/gtiff/libtiff/tif_color.c + frmts/gtiff/libtiff/tif_compress.c + frmts/gtiff/libtiff/tif_dir.c + frmts/gtiff/libtiff/tif_dir.h + frmts/gtiff/libtiff/tif_dirinfo.c + frmts/gtiff/libtiff/tif_dirread.c + frmts/gtiff/libtiff/tif_dirwrite.c + frmts/gtiff/libtiff/tif_dumpmode.c + frmts/gtiff/libtiff/tif_error.c + frmts/gtiff/libtiff/tif_extension.c + frmts/gtiff/libtiff/tiff.h + frmts/gtiff/libtiff/tiffio.h + frmts/gtiff/libtiff/tiffiop.h + frmts/gtiff/libtiff/tif_fax3.c + frmts/gtiff/libtiff/tif_fax3.h + frmts/gtiff/libtiff/tif_flush.c + frmts/gtiff/libtiff/tif_getimage.c + frmts/gtiff/libtiff/tif_jpeg.c + frmts/gtiff/libtiff/tif_lzma.c + frmts/gtiff/libtiff/tif_lzw.c + frmts/gtiff/libtiff/tif_next.c + frmts/gtiff/libtiff/tif_open.c + frmts/gtiff/libtiff/tif_packbits.c + frmts/gtiff/libtiff/tif_predict.c + frmts/gtiff/libtiff/tif_predict.h + frmts/gtiff/libtiff/tif_print.c + frmts/gtiff/libtiff/tif_read.c + frmts/gtiff/libtiff/tif_strip.c + frmts/gtiff/libtiff/tif_swab.c + frmts/gtiff/libtiff/tif_thunder.c + frmts/gtiff/libtiff/tif_tile.c + frmts/gtiff/libtiff/tif_version.c + frmts/gtiff/libtiff/tif_warning.c + frmts/gtiff/libtiff/tif_webp.c + frmts/gtiff/libtiff/tif_write.c + frmts/gtiff/libtiff/tif_zip.c + frmts/gtiff/libtiff/tif_zstd.c +Copyright: 1988-1997, Sam Leffler + 1991-1997, Silicon Graphics, Inc. + 1990, 1995, Frank D. Cringle. + 2010, Andrey Kiselev + 2017, Planet Labs + 2018, Mapbox +License: HPND-sl-sgi + +Files: frmts/gtiff/libtiff/tif_luv.c +Copyright: 1997, Greg Ward Larson + 1997, Silicon Graphics, Inc. +License: HPND-sl-gl-sgi + +Files: frmts/gtiff/libtiff/tif_ojpeg.c +Copyright: Joris Van Damme + AWare Systems +Comment: The licence agreement for this file is the same as the rest of the LibTiff + library. + . + IN NO EVENT SHALL JORIS VAN DAMME OR AWARE SYSTEMS BE LIABLE FOR + ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF + LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE + OF THIS SOFTWARE. + . + Joris Van Damme and/or AWare Systems may be available for custom + development. If you like what you see, and need anything similar or related, + contact . +License: HPND-sl-sgi + +Files: frmts/gtiff/libtiff/tif_pixarlog.c +Copyright: 1996-1997, Sam Leffler + 1996, Pixar +License: HPND-p-sl-sgi + +Files: frmts/gtiff/tif_lerc.c + frmts/gtiff/tif_lerc.h +Copyright: 2018, Even Rouault +License: HPND-sl-sgi + +Files: frmts/hdf4/hdf-eos/EHapi.c + frmts/hdf4/hdf-eos/GDapi.c + frmts/hdf4/hdf-eos/SWapi.c + frmts/hdf4/hdf-eos/HdfEosDef.h + frmts/hdf4/hdf-eos/HDFEOSVersion.h + frmts/hdf4/hdf-eos/ease.h +Copyright: 1996, Hughes and Applied Research Corporation +License: HPND-eos + +Files: frmts/jpeg/jpgdataset.cpp +Copyright: 2000, Frank Warmerdam + 2007-2014, Even Rouault +Comment: Portions Copyright (c) Her majesty the Queen in right of Canada as + represented by the Minister of National Defence, 2006. +License: Expat + +Files: frmts/jpeg/libjpeg/* + frmts/jpeg/libjpeg12/* +Copyright: 1991-1998, Thomas G. Lane + 2015, D. R. Commander +License: IJG + +Files: frmts/jpeg2000/jpeg2000_vsil_io.cpp +Copyright: 1999-2000, Image Power, Inc + 1999-2000, The University of British Columbia + 2001-2006, Michael David Adams + 2009-2010, Even Rouault +License: JasPer-2.0 + +Files: frmts/jpipkak/jpipkakdataset.cpp + frmts/jpipkak/jpipkakdataset.h +Copyright: 2000-2007, ITT Visual Information Solutions +License: ITT + +Files: frmts/mrf/BitMask2D.h + frmts/mrf/JPNG_band.cpp + frmts/mrf/Packer.h + frmts/mrf/Packer_RLE.cpp + frmts/mrf/Packer_RLE.h +Copyright: 2016-2017, Esri +License: Apache-2.0 + +Files: frmts/mrsid_lidar/gdal_MG4Lidar.cpp +Copyright: 2010, LizardTech +License: BSD-3-Clause + +Files: frmts/nitf/nitfdataset.cpp + frmts/nitf/nitfdataset.h + frmts/nitf/nitfrasterband.cpp + frmts/nitf/nitfwritejpeg.cpp + gcore/gdalexif.cpp +Copyright: 2000, 2002, Frank Warmerdam + 2006, Her majesty the Queen in right of Canada as represented by the Minister of National Defence + 2007-2013, Even Rouault +Comment: Portions Copyright (c) Her majesty the Queen in right of Canada as + represented by the Minister of National Defence, 2006. +License: Expat + +Files: frmts/nitf/nitfimage.c + frmts/nitf/rpftocfile.cpp +Copyright: 1995, Logiciels et Applications Scientifiques (L.A.S.) Inc + 2002, Frank Warmerdam + 2007-2013, Even Rouault +Comment: Portions of code are placed under the following copyright: + . + Copyright (C) 1995 Logiciels et Applications Scientifiques (L.A.S.) Inc + Permission to use, copy, modify and distribute this software and + its documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies, that + both the copyright notice and this permission notice appear in + supporting documentation, and that the name of L.A.S. Inc not be used + in advertising or publicity pertaining to distribution of the software + without specific, written prior permission. L.A.S. Inc. makes no + representations about the suitability of this software for any purpose. + It is provided "as is" without express or implied warranty. +License: Expat + +Files: frmts/pcraster/libcsf/* +Copyright: PCRaster owners +License: BSD-3-Clause + +Files: frmts/pds/isis2dataset.cpp +Copyright: 2006, Frank Warmerdam + 2008-2011, Even Rouault +Comment: + Project: ISIS Version 2 Driver + Purpose: Implementation of ISIS2Dataset + Author: Trent Hare (thare@usgs.gov), + Robert Soricone (rsoricone@usgs.gov) + Ludovic Mercier (ludovic.mercier@gmail.com) + Frank Warmerdam (warmerdam@pobox.com) + . + NOTE: Original code authored by Trent and Robert and placed in the public + domain as per US government policy. I have (within my rights) appropriated + it and placed it under the following license. This is not intended to + diminish Trent and Roberts contribution. +License: Expat + +Files: frmts/pds/isis3dataset.cpp +Copyright: 2007, Frank Warmerdam + 2009-2010, Even Rouault +Comment: + Project: ISIS Version 3 Driver + Purpose: Implementation of ISIS3Dataset + Author: Trent Hare (thare@usgs.gov) + Frank Warmerdam (warmerdam@pobox.com) + . + NOTE: Original code authored by Trent and placed in the public domain as + per US government policy. I have (within my rights) appropriated it and + placed it under the following license. This is not intended to diminish + Trents contribution. +License: Expat + +Files: frmts/pds/pdsdataset.cpp +Copyright: 2007, Frank Warmerdam + 2008-2013, Even Rouault +Comment: + Project: PDS Driver; Planetary Data System Format + Purpose: Implementation of PDSDataset + Author: Trent Hare (thare@usgs.gov), + Robert Soricone (rsoricone@usgs.gov) + . + NOTE: Original code authored by Trent and Robert and placed in the public + domain as per US government policy. I have (within my rights) appropriated + it and placed it under the following license. This is not intended to + diminish Trent and Roberts contribution. +License: Expat + +Files: frmts/png/libpng/* +Copyright: 1998-2014, Glenn Randers-Pehrson + 1996-1997, Andreas Dilger + 1995-1996, Guy Eric Schalnat, Group 42, Inc. +License: libpng + +Files: frmts/rmf/rmflzw.cpp +Copyright: 2007, Andrey Kiselev +Comment: COPYRIGHT NOTICE FROM THE INITIAL IMPLEMENTATION: + . + The programs LZWCOM and LZWUNC, both in binary executable and source forms, + are in the public domain. No warranty is given or implied, and no + liability will be assumed by the author. + . + Everyone on earth is hereby given permission to use, copy, distribute, + change, mangle, destroy or otherwise employ these programs, provided they + hurt no one but themselves in the process. + . + Kent Williams + Norand Inc. + 550 2nd St S.E. + Cedar Rapids, Iowa 52401 + (319) 369-3131 +License: Expat + +Files: frmts/wms/minidriver_mrf.cpp +Copyright: 2016, Lucian Plesea + 2016, Esri +License: Apache-2.0 + +Files: frmts/zlib/* +Copyright: 1995-2005, Jean-loup Gailly. + 1995-2005, Mark Adler +License: zlib + +Files: frmts/zlib/crc32.c +Copyright: 1995-2005, Mark Adler +Comment: Thanks to Rodney Brown for his contribution of faster + CRC methods: exclusive-oring 32 bits of data at a time, and pre-computing + tables for updating the shift register in one step with three exclusive-ors + instead of four steps with four exclusive-ors. This results in about a + factor of two increase in speed on a Power PC G4 (PPC7455) using gcc -O3. +License: zlib + +Files: gcore/Version.rc +Copyright: 2005, Frank Warmerdam +Comment: Copyright assignment provided by Martin Daly by email, "Be my guest. Fame! + At last! Best not let it go to my head, eh?" +License: Expat + +Files: ogr/osr_cs_wkt_parser.c + ogr/osr_cs_wkt_parser.h + ogr/swq_parser.cpp + ogr/swq_parser.hpp +Copyright: 1984, 1989-1990, 2000-2015, Free Software Foundation, Inc + 2010-2013, Even Rouault +License: GPL-3+ with Bison exception + +Files: ogr/swq.cpp + ogr/swq.h +Copyright: 2001, Information Interoperability Institute (3i) + 2010-2013, Even Rouault +License: HPND-3i + +Files: ogr/ogrsf_frmts/dxf/intronurbs.cpp +Copyright: 2000, 2009, David F. Rogers +Comment: This code is derived from the code associated with the book "An + Introduction to NURBS" by David F. Rogers. More information on the book + and the code is available at: http://www.nar-associates.com/nurbs/ +License: BSD-3-Clause + +Files: ogr/ogrsf_frmts/geojson/libjson/* +Copyright: 2004-2005, Metaparadigm Pte. Ltd. + 2009-2012, Eric Haszlakiewicz +License: Expat + +Files: ogr/ogrsf_frmts/ods/ods_formula_parser.cpp + ogr/ogrsf_frmts/ods/ods_formula_parser.hpp +Copyright: 1984, 1989-1990, 2000-2015, Free Software Foundation, Inc. + 2010, Frank Warmerdam + 2012, Even Rouault +License: Expat and GPL-3+ with Bison exception + +Files: ogr/ogrsf_frmts/ods/ods_formula_parser.hpp +Copyright: 1984, 1989-1990, 2000-2006, Free Software Foundation, Inc. + 2012, Even Rouault +License: GPL-3+ with Bison exception + +Files: ogr/ogrsf_frmts/pg/ogrpglayer.cpp +Copyright: 1994, The Regents of the University of California + 1996-2006, PostgreSQL Global Development Group + 2000, Frank Warmerdam + 2008-2013, Even Rouault +License: Expat and PostgreSQL + +Files: ogr/ogrsf_frmts/shape/dbfopen.c + ogr/ogrsf_frmts/shape/sbnsearch.c + ogr/ogrsf_frmts/shape/shapefil.h + ogr/ogrsf_frmts/shape/shpopen.c + ogr/ogrsf_frmts/shape/shptree.c +Copyright: 1999, 2001, Frank Warmerdam + 2011-2013, Even Rouault +License: Expat or LGPL-2+ + +Files: ogr/ogrsf_frmts/sqlite/ogrsqlite3ext.h +Copyright: 2012-2013, Even Rouault +Comment: Contains headers from sqlite3. + . + Customized version of sqlite3ext.h to fix issues with */ + Spatialite amalgamation sqlite3ext.h that defines */ + sqlite3_macros that contradict the ones that should be defined */ + by sqlite3ext.h !!! This is messy, but no other choice, */ + except not using the sqlite3ext.h from spatialite amalgamation */ + . + #undef sqlite3_aggregate_context + ... + #undef sqlite3_vtab_on_conflict + . + 2006 June 7 + . + The author disclaims copyright to this source code. In place of + a legal notice, here is a blessing: + . + May you do good and not evil. + May you find forgiveness for yourself and forgive others. + May you share freely, never taking more than you give. + . + *********************************************************************** + This header file defines the SQLite interface for use by + shared libraries that want to be imported as extensions into + an SQLite instance. Shared libraries that intend to be loaded + as extensions by SQLite should #include this file instead of + sqlite3.h. +License: Expat + +Files: ogr/ogrsf_frmts/sqlite/ogrsqlitedatasource.cpp + ogr/ogrsf_frmts/sqlite/ogrsqlitedriver.cpp + ogr/ogrsf_frmts/sqlite/ogrsqlitelayer.cpp +Copyright: 2003-2004, Frank Warmerdam + 2007-2013, Even Rouault +Comment: Contributor: Alessandro Furieri, a.furieri@lqt.it + Portions of this module properly supporting SpatiaLite Table/Geom creation + Developed for Faunalia ( http://www.faunalia.it) with funding from + Regione Toscana - Settore SISTEMA INFORMATIVO TERRITORIALE ED AMBIENTALE +License: Expat + +Files: ogr/ogrsf_frmts/sqlite/ogrsqliteregexp.cpp +Copyright: 2012, Even Rouault +Comment: This code originates from pcre.c from the sqlite3-pcre extension + from http://laltromondo.dynalias.net/~iki/informatica/soft/sqlite3-pcre/ + whose header is: + . + Written by Alexey Tourbin . + . + The author has dedicated the code to the public domain. Anyone is free + to copy, modify, publish, use, compile, sell, or distribute the original + code, either in source code form or as a compiled binary, for any purpose, + commercial or non-commercial, and by any means. +License: Expat + +Files: port/cpl_base64.cpp +Copyright: 2002, Refractions Research + 2004-2008, René Nyffenegger + 2008, Paul Ramsey + 2010-2013, Even Rouault +Comment: CPLBase64Encode() was extracted from the base64 cpp utility published by + René Nyffenegger. The code was modified into a form suitable for use in + CPL. The original code can be found at + http://www.adp-gmbh.ch/cpp/common/base64.html. +License: Expat and Base64 + +Files: port/cpl_md5.cpp +Copyright: 1993, Colin Plumb + 1997, Jim Kingdon, Cyclic Software +License: public-domain + This code implements the MD5 message-digest algorithm. + The algorithm is due to Ron Rivest. This code was + written by Colin Plumb in 1993, no copyright is claimed. + This code is in the public domain; do with it what you wish. + . + Equivalent code is available from RSA Data Security, Inc. + This code has been tested against that, and is equivalent, + except that you don't need to include two pages of legalese + with every copy. + . + To compute the message digest of a chunk of bytes, declare an + MD5Context structure, pass it to MD5Init, call MD5Update as + needed on buffers full of bytes, and then call MD5Final, which + will fill a supplied 16-byte array with the digest. + . + This code was modified in 1997 by Jim Kingdon of Cyclic Software to + not require an integer type which is exactly 32 bits. This work + draws on the changes for the same purpose by Tatu Ylonen + as part of SSH, but since I didn't actually use + that code, there is no copyright issue. I hereby disclaim + copyright in any changes I have made; this code remains in the + public domain. + +Files: port/cpl_mem_cache.h +Copyright: 2012, SAURAV MOHAPATRA +License: cpl-mem-cache + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +Files: port/cpl_minizip_ioapi.cpp + port/cpl_minizip_ioapi.h + port/cpl_minizip_unzip.cpp + port/cpl_minizip_unzip.h + port/cpl_minizip_zip.cpp + port/cpl_minizip_zip.h +Copyright: 1990-2000, Info-Zip + 1998-2005, Gilles Vollant + 2008-2014, Even Rouault + 2004, Rolf Kalbermatter +License: Info-ZIP + +Files: port/cpl_recode.cpp + port/cpl_recode_iconv.cpp + port/cpl_recode_stub.cpp +Copyright: 2006, Bill Spitzak and others + 2008, Frank Warmerdam + 2011, Andrey Kiselev + 2009-2014, Even Rouault +License: HPND-disclaimer + +Files: port/cpl_time.cpp +Copyright: None +License: public-domain + CPLUnixTimeToYMDHMS() is derived from timesub() in localtime.c from openbsd/freebsd/netbsd. + CPLYMDHMSToUnixTime() has been implemented by Even Rouault and is in the public domain + . + Cf http://svn.freebsd.org/viewvc/base/stable/7/lib/libc/stdtime/localtime.c?revision=178142&view=markup + localtime.c comes with the following header : + . + This file is in the public domain, so clarified as of + 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov). + +Files: port/cpl_vsil_gzip.cpp +Copyright: 1995-2005, Jean-loup Gailly + 2008-2014, Even Rouault +License: Expat and zlib + +Files: swig/perl/* +Copyright: 2006-, Ari Jolma and GDAL Swig developers +License: Artistic or GPL-1.0+ + +Files: swig/python/samples/gdal_vrtmerge.py + swig/python/scripts/gdal_merge.py +Copyright: 2000, Atlantis Scientific Inc. (www.atlsci.com) + 2005, Gabriel Ebner + 2009-2011, Even Rouault +License: LGPL-2+ + +Files: third_party/LercLib/* +Copyright: 2015-2018, Esri +License: Apache-2.0 + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian systems, the complete text of the Apache License can be found + in `/usr/share/common-licenses/Apache-2.0'. + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + . + On Debian systems, the complete text of the Artistic License can be + found in `/usr/share/common-licenses/Artistic'. + +License: Base64 + base64.cpp and base64.h + . + Copyright (C) 2004-2008 René Nyffenegger + . + This source code is provided 'as-is', without any express or implied + warranty. In no event will the author be held liable for any damages + arising from the use of this software. + . + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + . + 1. The origin of this source code must not be misrepresented; you must not + claim that you wrote the original source code. If you use this source code + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + . + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original source code. + . + 3. This notice may not be removed or altered from any source distribution. + . + René Nyffenegger rene.nyffenegger@adp-gmbh.ch + +License: BSD-3-Clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + . + 1) Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + . + 2) Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + . + 3) Neither the name of the ORGANIZATION nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + +License: GPL-1.0+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + . + On Debian systems, the complete text of version 1 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-1'. + +License: GPL-3+ with Bison exception + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + On Debian systems, the complete text of version 3 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3'. + . + As a special exception, you may create a larger work that contains + part or all of the Bison parser skeleton and distribute that work + under terms of your choice, so long as that work isn't itself a + parser generator using the skeleton or a modified version thereof + as a parser skeleton. Alternatively, if you modify or redistribute + the parser skeleton itself, you may (at your option) remove this + special exception, which will cause the skeleton and the resulting + Bison output files to be licensed under the GNU General Public + License without this special exception. + . + This special exception was added by the Free Software Foundation in + version 2.2 of Bison. + +License: HPND-eos + Permission to use, modify, and distribute this software and its documentation + for any purpose without fee is hereby granted, provided that the above + copyright notice appear in all copies and that both that copyright notice and + this permission notice appear in supporting documentation. + +License: HPND-3i + Permission to use, copy, modify and distribute this software and + its documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies, that + both the copyright notice and this permission notice appear in + supporting documentation, and that the name of 3i not be used + in advertising or publicity pertaining to distribution of the software + without specific, written prior permission. 3i makes no + representations about the suitability of this software for any purpose. + It is provided "as is" without express or implied warranty. + +License: HPND-disclaimer + Permission to use, copy, modify, and distribute this software for any + purpose with or without fee is hereby granted, provided that the above + copyright notice and this permission notice appear in all copies. + . + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +License: HPND-sl-sgi + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, provided + that (i) the above copyright notices and this permission notice appear in + all copies of the software and related documentation, and (ii) the names of + Sam Leffler and Silicon Graphics may not be used in any advertising or + publicity relating to the software without the specific, prior written + permission of Sam Leffler and Silicon Graphics. + . + THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + . + IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR + ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF + LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE + OF THIS SOFTWARE. + +License: HPND-p-sl-sgi + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, provided + that (i) the above copyright notices and this permission notice appear in + all copies of the software and related documentation, and (ii) the names of + Pixar, Sam Leffler and Silicon Graphics may not be used in any advertising or + publicity relating to the software without the specific, prior written + permission of Pixar, Sam Leffler and Silicon Graphics. + . + THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + . + IN NO EVENT SHALL PIXAR, SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR + ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF + LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE + OF THIS SOFTWARE. + +License: HPND-sl-gl-sgi + Permission to use, copy, modify, distribute, and sell this software and + its documentation for any purpose is hereby granted without fee, provided + that (i) the above copyright notices and this permission notice appear in + all copies of the software and related documentation, and (ii) the names of + Sam Leffler, Greg Larson and Silicon Graphics may not be used in any + advertising or publicity relating to the software without the specific, + prior written permission of Sam Leffler, Greg Larson and Silicon Graphics. + . + THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, + EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + . + IN NO EVENT SHALL SAM LEFFLER, GREG LARSON OR SILICON GRAPHICS BE LIABLE + FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, + OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, + WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF + LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE + OF THIS SOFTWARE. + +License: IJG + LEGAL ISSUES + ============ + . + In plain English: + . + 1. We don't promise that this software works. (But if you find any bugs, + please let us know!) + 2. You can use this software for whatever you want. You don't have to pay us. + 3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + . + In legalese: + . + The authors make NO WARRANTY or representation, either express or implied, + with respect to this software, its quality, accuracy, merchantability, or + fitness for a particular purpose. This software is provided "AS IS", and you, + its user, assume the entire risk as to its quality and accuracy. + . + This software is copyright (C) 1991-1998, Thomas G. Lane. + All Rights Reserved except as specified below. + . + Permission is hereby granted to use, copy, modify, and distribute this + software (or portions thereof) for any purpose, without fee, subject to these + conditions: + (1) If any part of the source code for this software is distributed, then this + README file must be included, with this copyright and no-warranty notice + unaltered; and any additions, deletions, or changes to the original files + must be clearly indicated in accompanying documentation. + (2) If only executable code is distributed, then the accompanying + documentation must state that "this software is based in part on the work of + the Independent JPEG Group". + (3) Permission for use of this software is granted only if the user accepts + full responsibility for any undesirable consequences; the authors accept + NO LIABILITY for damages of any kind. + . + These conditions apply to any software derived from or based on the IJG code, + not just to the unmodified library. If you use our work, you ought to + acknowledge us. + . + Permission is NOT granted for the use of any IJG author's name or company name + in advertising or publicity relating to this software or products derived from + it. This software may be referred to only as "the Independent JPEG Group's + software". + . + We specifically permit and encourage the use of this software as the basis of + commercial products, provided that all warranty or liability claims are + assumed by the product vendor. + . + . + ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, + sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. + ansi2knr.c is NOT covered by the above copyright and conditions, but instead + by the usual distribution terms of the Free Software Foundation; principally, + that you must include source code if you redistribute it. (See the file + ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part + of any program generated from the IJG code, this does not limit you more than + the foregoing paragraphs do. + . + The Unix configuration script "configure" was produced with GNU Autoconf. + It is copyright by the Free Software Foundation but is freely distributable. + The same holds for its supporting scripts (config.guess, config.sub, + ltconfig, ltmain.sh). Another support script, install-sh, is copyright + by M.I.T. but is also freely distributable. + . + It appears that the arithmetic coding option of the JPEG spec is covered by + patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot + legally be used without obtaining one or more licenses. For this reason, + support for arithmetic coding has been removed from the free JPEG software. + (Since arithmetic coding provides only a marginal gain over the unpatented + Huffman mode, it is unlikely that very many implementations will support it.) + So far as we are aware, there are no patent restrictions on the remaining + code. + . + The IJG distribution formerly included code to read and write GIF files. + To avoid entanglement with the Unisys LZW patent, GIF reading support has + been removed altogether, and the GIF writer has been simplified to produce + "uncompressed GIFs". This technique does not use the LZW algorithm; the + resulting GIF files are larger than usual, but are readable by all standard + GIF decoders. + . + We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + +License: Info-ZIP + This is version 2005-Feb-10 of the Info-ZIP copyright and license. + The definitive version of this document should be available at + ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely. + . + For the purposes of this copyright and license, "Info-ZIP" is defined as + the following set of individuals: + . + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, + Jean-loup Gailly, Hunter Goatley, Ed Gordon, Ian Gorman, Chris Herborth, + Dirk Haase, Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, + David Kirschbaum, Johnny Lee, Onno van der Linden, Igor Mandrichenko, + Steve P. Miller, Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, + Kai Uwe Rommel, Steve Salisbury, Dave Smith, Steven M. Schweda, + Christian Spieler, Cosmin Truta, Antoine Verheijen, Paul von Behren, + Rich Wales, Mike White + . + This software is provided "as is," without warranty of any kind, express + or implied. In no event shall Info-ZIP or its contributors be held liable + for any direct, indirect, incidental, special or consequential damages + arising out of the use of or inability to use this software. + . + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + . + 1. Redistributions of source code must retain the above copyright notice, + definition, disclaimer, and this list of conditions. + . + 2. Redistributions in binary form (compiled executables) must reproduce + the above copyright notice, definition, disclaimer, and this list of + conditions in documentation and/or other materials provided with the + distribution. The sole exception to this condition is redistribution + of a standard UnZipSFX binary (including SFXWiz) as part of a + self-extracting archive; that is permitted without inclusion of this + license, as long as the normal SFX banner has not been removed from + the binary or disabled. + . + 3. Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, and dynamic, + shared, or static library versions--must be plainly marked as such + and must not be misrepresented as being the original source. Such + altered versions also must not be misrepresented as being Info-ZIP + releases--including, but not limited to, labeling of the altered + versions with the names "Info-ZIP" (or any variation thereof, including, + but not limited to, different capitalizations), "Pocket UnZip," "WiZ" + or "MacZip" without the explicit permission of Info-ZIP. Such altered + versions are further prohibited from misrepresentative use of the + Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s). + . + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its + own source and binary releases. + +License: ITT + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +License: JasPer-2.0 + JasPer License Version 2.0 + . + Copyright (c) 2001-2006 Michael David Adams + Copyright (c) 1999-2000 Image Power, Inc. + Copyright (c) 1999-2000 The University of British Columbia + . + All rights reserved. + . + Permission is hereby granted, free of charge, to any person (the + "User") obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without restriction, + including without limitation the rights to use, copy, modify, merge, + publish, distribute, and/or sell copies of the Software, and to permit + persons to whom the Software is furnished to do so, subject to the + following conditions: + . + 1. The above copyright notices and this permission notice (which + includes the disclaimer below) shall be included in all copies or + substantial portions of the Software. + . + 2. The name of a copyright holder shall not be used to endorse or + promote products derived from the Software without specific prior + written permission. + . + THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS + LICENSE. NO USE OF THE SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER + THIS DISCLAIMER. THE SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS + "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING + BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO + EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL + INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING + FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. NO ASSURANCES ARE + PROVIDED BY THE COPYRIGHT HOLDERS THAT THE SOFTWARE DOES NOT INFRINGE + THE PATENT OR OTHER INTELLECTUAL PROPERTY RIGHTS OF ANY OTHER ENTITY. + EACH COPYRIGHT HOLDER DISCLAIMS ANY LIABILITY TO THE USER FOR CLAIMS + BROUGHT BY ANY OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL + PROPERTY RIGHTS OR OTHERWISE. AS A CONDITION TO EXERCISING THE RIGHTS + GRANTED HEREUNDER, EACH USER HEREBY ASSUMES SOLE RESPONSIBILITY TO SECURE + ANY OTHER INTELLECTUAL PROPERTY RIGHTS NEEDED, IF ANY. THE SOFTWARE + IS NOT FAULT-TOLERANT AND IS NOT INTENDED FOR USE IN MISSION-CRITICAL + SYSTEMS, SUCH AS THOSE USED IN THE OPERATION OF NUCLEAR FACILITIES, + AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL + SYSTEMS, DIRECT LIFE SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH + THE FAILURE OF THE SOFTWARE OR SYSTEM COULD LEAD DIRECTLY TO DEATH, + PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH + RISK ACTIVITIES"). THE COPYRIGHT HOLDERS SPECIFICALLY DISCLAIM ANY + EXPRESS OR IMPLIED WARRANTY OF FITNESS FOR HIGH RISK ACTIVITIES. + +License: LGPL-2+ + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + . + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + . + On Debian systems, the full text of the GNU Library General Public + License version 2 can be found in the file + `/usr/share/common-licenses/LGPL-2'. + +License: libpng + This copy of the libpng notices is provided for your convenience. In case of + any discrepancy between this copy and the notices in the file png.h that is + included in the libpng distribution, the latter shall prevail. + . + COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: + . + If you modify libpng you may insert additional notices immediately following + this sentence. + . + This code is released under the libpng license. + . + libpng versions 1.2.6, August 15, 2004, through 1.2.50, July 10, 2012, are + Copyright (c) 2004, 2006-2009 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as libpng-1.2.5 + with the following individual added to the list of Contributing Authors + . + Cosmin Truta + . + libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are + Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as libpng-1.0.6 + with the following individuals added to the list of Contributing Authors + . + Simon-Pierre Cadieux + Eric S. Raymond + Gilles Vollant + . + and with the following additions to the disclaimer: + . + There is no warranty against interference with your enjoyment of the + library or against infringement. There is no warranty that our + efforts or the library will fulfill any of your particular purposes + or needs. This library is provided with all faults, and the entire + risk of satisfactory quality, performance, accuracy, and effort is with + the user. + . + libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are + Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are + distributed according to the same disclaimer and license as libpng-0.96, + with the following individuals added to the list of Contributing Authors: + . + Tom Lane + Glenn Randers-Pehrson + Willem van Schaik + . + libpng versions 0.89, June 1996, through 0.96, May 1997, are + Copyright (c) 1996, 1997 Andreas Dilger + Distributed according to the same disclaimer and license as libpng-0.88, + with the following individuals added to the list of Contributing Authors: + . + John Bowler + Kevin Bracey + Sam Bushell + Magnus Holmgren + Greg Roelofs + Tom Tanner + . + libpng versions 0.5, May 1995, through 0.88, January 1996, are + Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. + . + For the purposes of this copyright and license, "Contributing Authors" + is defined as the following set of individuals: + . + Andreas Dilger + Dave Martindale + Guy Eric Schalnat + Paul Schmidt + Tim Wegner + . + The PNG Reference Library is supplied "AS IS". The Contributing Authors + and Group 42, Inc. disclaim all warranties, expressed or implied, + including, without limitation, the warranties of merchantability and of + fitness for any purpose. The Contributing Authors and Group 42, Inc. + assume no liability for direct, indirect, incidental, special, exemplary, + or consequential damages, which may result from the use of the PNG + Reference Library, even if advised of the possibility of such damage. + . + Permission is hereby granted to use, copy, modify, and distribute this + source code, or portions hereof, for any purpose, without fee, subject + to the following restrictions: + . + 1. The origin of this source code must not be misrepresented. + . + 2. Altered versions must be plainly marked as such and must not + be misrepresented as being the original source. + . + 3. This Copyright notice may not be removed or altered from any + source or altered source distribution. + . + The Contributing Authors and Group 42, Inc. specifically permit, without + fee, and encourage the use of this source code as a component to + supporting the PNG file format in commercial products. If you use this + source code in a product, acknowledgment is not required but would be + appreciated. + . + . + A "png_get_copyright" function is available, for convenient use in "about" + boxes and the like: + . + printf("%s",png_get_copyright(NULL)); + . + Also, the PNG logo (in PNG format, of course) is supplied in the + files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). + . + Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a + certification mark of the Open Source Initiative. + . + Glenn Randers-Pehrson + glennrp at users.sourceforge.net + July 10, 2012 + +License: Expat + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included + in all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. + +License: PostgreSQL + PostgreSQL Database Management System + (formerly known as Postgres, then as Postgres95) + . + Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group + . + Portions Copyright (c) 1994, The Regents of the University of California + . + Permission to use, copy, modify, and distribute this software and its + documentation for any purpose, without fee, and without a written agreement + is hereby granted, provided that the above copyright notice and this + paragraph and the following two paragraphs appear in all copies. + . + IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR + DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING + LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS + DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + . + THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS + ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO + PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. + +License: Qhull + This software includes Qhull from C.B. Barber and The Geometry Center. + Qhull is copyrighted as noted above. Qhull is free software and may + be obtained via http from www.qhull.org. It may be freely copied, modified, + and redistributed under the following conditions: + . + 1. All copyright notices must remain intact in all files. + . + 2. A copy of this text file must be distributed along with any copies + of Qhull that you redistribute; this includes copies that you have + modified, or copies of programs or other software products that + include Qhull. + . + 3. If you modify Qhull, you must include a notice giving the + name of the person performing the modification, the date of + modification, and the reason for such modification. + . + 4. When distributing modified versions of Qhull, or other software + products that include Qhull, you must provide notice that the original + source code may be obtained as noted above. + . + 5. There is no warranty or other guarantee of fitness for Qhull, it is + provided solely "as is". Bug reports or fixes may be sent to + qhull_bug@qhull.org; the authors may or may not act on them as + they desire. + +License: zlib + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + . + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + diff --git a/gdal/debian/gbp.conf b/gdal/debian/gbp.conf new file mode 100644 index 000000000000..e930701ce90a --- /dev/null +++ b/gdal/debian/gbp.conf @@ -0,0 +1,19 @@ +[DEFAULT] + +# The default name for the upstream branch is "upstream". +# Change it if the name is different (for instance, "master"). +upstream-branch = upstream-2.4 + +# The default name for the Debian branch is "master". +# Change it if the name is different (for instance, "debian/unstable"). +debian-branch = master + +# git-import-orig uses the following names for the upstream tags. +# Change the value if you are not using git-import-orig +upstream-tag = upstream/%(version)s + +# Always use pristine-tar. +pristine-tar = True + +[buildpackage] +pbuilder-options = --source-only-changes diff --git a/gdal/debian/gdal-bin.install b/gdal/debian/gdal-bin.install new file mode 100644 index 000000000000..60502f8bd062 --- /dev/null +++ b/gdal/debian/gdal-bin.install @@ -0,0 +1,53 @@ +usr/bin/gdaladdo +usr/bin/gdalbuildvrt +usr/bin/gdaldem +usr/bin/gdalenhance +usr/bin/gdalinfo +usr/bin/gdallocationinfo +usr/bin/gdalmanage +usr/bin/gdalserver +usr/bin/gdalsrsinfo +usr/bin/gdaltindex +usr/bin/gdaltransform +usr/bin/gdalwarp +usr/bin/gdal_contour +usr/bin/gdal_grid +usr/bin/gdal_rasterize +usr/bin/gdal_translate +# gdal_utilities +usr/bin/gnmanalyse +usr/bin/gnmmanage +usr/bin/nearblack +usr/bin/ogr2ogr +usr/bin/ogrinfo +usr/bin/ogrlineref +usr/bin/ogrtindex +usr/bin/testepsg +usr/share/man/man1/gdaladdo.1 +usr/share/man/man1/gdalbuildvrt.1 +usr/share/man/man1/gdaldem.1 +# gdalenhance.1 +usr/share/man/man1/gdalinfo.1 +usr/share/man/man1/gdallocationinfo.1 +usr/share/man/man1/gdalmanage.1 +# gdalserver.1 +usr/share/man/man1/gdalsrsinfo.1 +usr/share/man/man1/gdaltindex.1 +usr/share/man/man1/gdaltransform.1 +usr/share/man/man1/gdalwarp.1 +usr/share/man/man1/gdal_contour.1 +usr/share/man/man1/gdal_grid.1 +usr/share/man/man1/gdal_pansharpen.1 +usr/share/man/man1/gdal_rasterize.1 +usr/share/man/man1/gdal_translate.1 +usr/share/man/man1/gdal_utilities.1 +usr/share/man/man1/gnmanalyse.1 +usr/share/man/man1/gnmmanage.1 +usr/share/man/man1/gnm_utilities.1 +usr/share/man/man1/nearblack.1 +usr/share/man/man1/ogr2ogr.1 +usr/share/man/man1/ogrinfo.1 +usr/share/man/man1/ogrlineref.1 +usr/share/man/man1/ogrtindex.1 +usr/share/man/man1/ogr_utilities.1 +# testepsg.1 diff --git a/gdal/debian/gdal-bin.lintian-overrides b/gdal/debian/gdal-bin.lintian-overrides new file mode 100644 index 000000000000..0b5181ff62ce --- /dev/null +++ b/gdal/debian/gdal-bin.lintian-overrides @@ -0,0 +1,11 @@ +# Man pages are automatically generated with sphinx. +hyphen-used-as-minus-sign +manpage-has-errors-from-man +binary-without-manpage + +# Breaks for python-gdal vs gdal-bin due to gdal_retile.1 collision +# in pre-1.10 versions distributed in experimental. Just for safety. +package-relation-with-self breaks: gdal-bin (<< 1.10.0-0~) + +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * diff --git a/gdal/debian/gdal-data.install b/gdal/debian/gdal-data.install new file mode 100644 index 000000000000..15a52c8004b9 --- /dev/null +++ b/gdal/debian/gdal-data.install @@ -0,0 +1 @@ +usr/share/gdal diff --git a/gdal/debian/gdal-data.lintian-overrides b/gdal/debian/gdal-data.lintian-overrides new file mode 100644 index 000000000000..b139ce011a67 --- /dev/null +++ b/gdal/debian/gdal-data.lintian-overrides @@ -0,0 +1,3 @@ +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * + diff --git a/gdal/debian/gdal-symbols.pl b/gdal/debian/gdal-symbols.pl new file mode 100755 index 000000000000..1cf6ce37d591 --- /dev/null +++ b/gdal/debian/gdal-symbols.pl @@ -0,0 +1,1288 @@ +#!/usr/bin/perl -w +# +# Automate symbols file updates using packages from snapshot.debian.org. +# +# Required dependencies: +# +# libfile-slurp-perl libwww-perl liburi-perl +# libjson-perl libdpkg-perl libterm-prompt-perl +# devscripts dpkg dpkg-dev binutils +# diffutils patch coreutils +# +# Copyright (C) 2013-2014, Bas Couwenberg +# +# This library is free software; you can redistribute it and/or modify +# it under the same terms as Perl itself, either Perl version 5.8.5 or, +# at your option, any later version of Perl 5 you may have available. +# + +use strict; +use File::Basename; +use File::Copy; +use File::Slurp; +use Getopt::Long qw(:config bundling no_ignore_case); +use HTTP::Request::Common; +use LWP::UserAgent; +use URI::Escape; +use JSON; +use Dpkg::Version; +use Term::Prompt; + +$|=1; + +my $package = 'libgdal20'; +my $pkgdir = 'binary-'.$package.'/'; + +our $ua = LWP::UserAgent->new(agent => basename($0)); + +my %cfg = ( + package => $package, + version => 'latest', + debsnap => '/usr/bin/debsnap', + dpkgdeb => '/usr/bin/dpkg-deb', + gensymbols => '/usr/bin/dpkg-gensymbols', + cppfilt => '/usr/bin/c++filt', + objdump => '/usr/bin/objdump', + diff => '/usr/bin/diff', + patch => '/usr/bin/patch', + sha512sum => '/usr/bin/sha512sum', + pkgdir => $pkgdir, + debian => 'debian/', + force => 0, + no_diff => 0, + no_prompt => 0, + yes => 0, + clean => 0, + verbose => 0, + help => 0, + ); + +my $result = GetOptions( + 'p|package=s' => \$cfg{package}, + 'V|version=s' => \$cfg{version}, + 'S|debsnap=s' => \$cfg{debsnap}, + 'E|dpkgdeb=s' => \$cfg{dpkgdeb}, + 'G|gensymbols=s' => \$cfg{gensymbols}, + 'C|cppfilt=s' => \$cfg{cppfilt}, + 'I|diff=s' => \$cfg{diff}, + 'P|patch=s' => \$cfg{patch}, + 'H|sha512sum=s' => \$cfg{sha512sum}, + 'D|pkgdir=s' => \$cfg{pkgdir}, + 'd|debian=s' => \$cfg{debian}, + 'f|force' => \$cfg{force}, + 'no-diff' => \$cfg{no_diff}, + 'no-prompt' => \$cfg{no_prompt}, + 'y|yes' => \$cfg{yes}, + 'c|clean' => \$cfg{clean}, + 'v|verbose' => \$cfg{verbose}, + 'h|help' => \$cfg{help}, + ); + +if(!$result || $cfg{help} || !$cfg{package} || !$cfg{debian}) { + print STDERR "\n" if(!$result); + + print "Usage: ". basename($0). " [OPTIONS]\n\n"; + print "Options:\n"; + print "-p, --package Library binary package name ($cfg{package})\n"; + print "-V, --version Library binary package version ($cfg{version})\n"; + print "-S, --debsnap Path to debsnap ($cfg{debsnap})\n"; + print "-E, --dpkgdeb Path to dpkg-deb ($cfg{dpkgdeb})\n"; + print "-G, --gensymbols Path to dpkg-gensymbols ($cfg{gensymbols})\n"; + print "-O, --objdump Path to objdump ($cfg{objdump})\n"; + print "-C, --cppfilt Path to c++filt ($cfg{cppfilt})\n"; + print "-I, --diff Path to diff ($cfg{diff})\n"; + print "-P, --patch Path to patch ($cfg{patch})\n"; + print "-H, --sha512sum Path to sha512sum ($cfg{sha512sum})\n"; + print "-D, --pkgdir Path to downloaded packages ($cfg{pkgdir})\n"; + print "-d, --debian Path to debian/ directory ($cfg{debian})\n"; + print "-f, --force Force writing into existing package directory\n"; + print " --no-diff Don't display diff for new symbols files\n"; + print " --no-prompt Don't prompt to select symbols, update manually\n"; + print "-y, --yes Default to yes on prompts\n"; + print "-c, --clean Clean up temorary files after processing\n"; + print "-v, --verbose Enable verbose output\n"; + print "-h, --help Display this usage information\n"; + + exit 1; +} + +if(!-x $cfg{debsnap}) { + print "Error: Cannot execute debsnap: $cfg{debsnap}\n"; + print "Use --debsnap to override the path and/or install the devscripts package.\n"; + exit 1; +} +if(!-x $cfg{dpkgdeb}) { + print "Error: Cannot execute dpkg-deb: $cfg{dpkgdeb}\n"; + print "Use --dpkg-deb to override the path and/or install the dpkg package.\n"; + exit 1; +} +if(!-x $cfg{gensymbols}) { + print "Error: Cannot execute dpkg-gensymbols: $cfg{gensymbols}\n"; + print "Use --gensymbols to override the path and/or install the dpkg-dev package.\n"; + exit 1; +} +if(!-x $cfg{objdump}) { + print "Error: Cannot execute objdump: $cfg{objdump}\n"; + print "Use --objdump to override the path and/or install the binutils package.\n"; + exit 1; +} +if(!-x $cfg{cppfilt}) { + print "Error: Cannot execute c++filt: $cfg{cppfilt}\n"; + print "Use --cppfilt to override the path and/or install the binutils package.\n"; + exit 1; +} +if(!-x $cfg{diff}) { + print "Error: Cannot execute diff: $cfg{diff}\n"; + print "Use --diff to override the path and/or install the diffutils package.\n"; + exit 1; +} +if(!-x $cfg{patch}) { + print "Error: Cannot execute patch: $cfg{patch}\n"; + print "Use --patch to override the path and/or install the patch package.\n"; + exit 1; +} +if(!-x $cfg{sha512sum}) { + print "Error: Cannot execute sha512sum: $cfg{sha512sum}\n"; + print "Use --sha512sum to override the path and/or install the coreutils package.\n"; + exit 1; +} + +if(!-r $cfg{debian} || !-w $cfg{debian}) { + print "Error: Cannot read/write directory: $cfg{debian}\n"; + exit 1; +} +if(-e $cfg{pkgdir} && !$cfg{force}) { + print "Error: Directory already exists: $cfg{pkgdir} (use --force to override)\n"; + exit 1; +} + +$cfg{debian} .= '/' if(substr($cfg{debian}, -1, 1) ne '/'); +$cfg{pkgdir} .= '/' if(substr($cfg{pkgdir}, -1, 1) ne '/'); + +my @versions = get_versions(%cfg); + +if(!$cfg{version} || $cfg{version} eq 'latest') { + $cfg{version} = $versions[-1]; + + if(!$cfg{version}) { + print "Error: Failed to determine latest version for: $cfg{package}\n"; + exit 1; + } +} + +my %symbols = (); + +# Get binary packages for all architectures +download_packages(%cfg); +unpack_packages(%cfg); + +# Update symbols files for existing architectures +create_new_symbols(%cfg); +create_new_patch_files(%cfg); +patch_new_files(%cfg); +split_new_files(%cfg); +compare_new_symbols(%cfg); + +# Create symbols files for new architectures +new_architecture_symbols(%cfg); + +clean_temp_files(%cfg) if($cfg{clean}); + +exit 0; + +################################################################################ +# Subroutines + +sub get_versions { + my (%args) = @_; + + my $url = 'http://snapshot.debian.org/mr/binary/'.uri_escape($args{package}).'/'; + my $req = HTTP::Request->new(GET => $url); + + print "Retrieving URL: $url ... " if($cfg{verbose}); + my $res = $ua->request($req); + if($res->is_success) { + print "Success\n" if($cfg{verbose}); + + my $json = $res->content; + my $data = decode_json($json); + + my @versions = (); + + if($data->{result} && @{$data->{result}}) { + print "Checking versions...\n" if($cfg{verbose}); + + foreach my $v (sort { version_compare($a->{binary_version}, $b->{binary_version}) } @{$data->{result}}) { + push @versions, $v->{binary_version}; + } + + print "Latest version: $versions[-1]\n" if($cfg{verbose}); + } + + print "\n" if($cfg{verbose}); + + return @versions; + } + else { + print "Failed!\n" if($cfg{verbose}); + print "Error: Failed to retrieve URL! ($url)\n"; + print "HTTP Status: ".$res->code." ".$res->message."\n"; + + return; + } +} + +sub download_packages { + my (%args) = @_; + + my $dir = $args{pkgdir}; + + if(!-e $args{pkgdir} || $args{force}) { + if($cfg{verbose}) { + print "Downloading binary packages for: $args{package}"; + print ", version: $args{version}" if($args{version}); + print ", architecture: $args{architecture}" if($args{architecture}); + print ", into: $args{pkgdir}\n"; + } + + my @cmd = (); + + push @cmd, $cfg{debsnap}; + push @cmd, ('--destdir', $args{pkgdir}); + push @cmd, '--force' if($args{force}); + push @cmd, '--verbose' if($args{verbose}); + push @cmd, '--binary'; + push @cmd, ('--architecture', $args{architecture}) if($args{architecture}); + push @cmd, $args{package}; + push @cmd, $args{version} if($args{version} && $args{version} ne 'all'); + + print "Exec: @cmd\n" if($cfg{verbose}); + + my $exit = system(@cmd) >> 8; + if($exit != 0) { + print "Error: Command failed: @cmd ($exit)\n"; + exit $exit; + } + + print "\n" if($cfg{verbose}); + } + else { + print "Error: Directory already exists: $dir (use --force to override)\n"; + return; + } +} + +sub unpack_packages { + my (%args) = @_; + + my $dir = $args{pkgdir}; + + if(-r $dir && -w $dir) { + print "Extracting downloaded packages...\n" if($cfg{verbose}); + + opendir(DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir DIR) { + # libgdal1h_1.10.1+dfsg-1_amd64.deb + if(/^($args{package})_(\S+)_(\S+)\.deb$/) { + my $pkg = $1; + my $version = $2; + my $arch = $3; + my $file = $dir.$_; + my $pkgdir = $dir.$pkg.'_'.$version.'_'.$arch.'/'; + + next if($arch eq 'common'); + next if($version ne $args{version} && $args{version} ne 'all'); + next if(-r $pkgdir); + + # dpkg-deb -R libgdal1h_1.10.1+dfsg-1_amd64.deb libgdal1h_1.10.1+dfsg-1_amd64 + + my @cmd = ( + $cfg{dpkgdeb}, + '--raw-extract', + $file, + $pkgdir, + ); + + print "Exec: @cmd\n" if($cfg{verbose}); + + my $exit = system(@cmd) >> 8; + if($exit != 0) { + print "Error: Command failed: @cmd ($exit)\n"; + exit $exit; + } + } + } + closedir DIR; + + print "\n" if($cfg{verbose}); + } + else { + print "Error: Cannot read/write directory: $dir\n"; + return; + } +} + +sub create_new_symbols { + my (%args) = @_; + + my $dir = $args{debian}; + + if(-r $dir && -w $dir) { + opendir(DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir DIR) { + # libgdal1h.symbols.amd64 + if(/^($args{package}).symbols.(\S+)$/) { + my $pkg = $1; + my $arch = $2; + my $file = $dir.$_; + + next if($arch eq 'common'); + next if($arch =~ /\.(new|diff|filt|patch|c\+\+|common|complete)$/); + + my $version = ''; + my $library = ''; + + my $pkg_dir = $args{pkgdir}; + if(-r $pkg_dir) { + print "Looking for $arch under: $pkg_dir\n" if($cfg{verbose}); + + opendir(PKGDIR, $pkg_dir) || die "Error: Cannot open package directory: $pkg_dir ($!)"; + while(readdir PKGDIR) { + # libgdal1h_1.10.1+dfsg-1_armel + if(/^${pkg}_(\S+?)_${arch}$/) { + print "Package directory: $_\n" if($cfg{verbose}); + + $version = $1; + + next if($version ne $args{version}); + + $version = upstream_version($version); + + $library = find_library(%args, dir => $pkg_dir.$_.'/usr/lib/'); + + last; + } + } + closedir PKGDIR; + } + else { + print "Error: Cannot read package directory: $pkg_dir\n"; + print "\n" if($cfg{verbose}); + return; + } + + if(!$version) { + print "Error: Cannot determine library version!\n"; + print "\n" if($cfg{verbose}); + next; + } + + if(!$library) { + print "Error: Cannot find library!\n"; + print "\n" if($cfg{verbose}); + return; + } + + my $output = $file.'.new'; + my $diff = $file.'.diff'; + + # dpkg-gensymbols -plibgdal1h -aarmel -v1.10.1 -Idebian/libgdal1h.symbols.armel -Odebian/libgdal1h.symbols.armel.new -ebinary-libgdal1h/libgdal1h_1.10.1+dfsg-1_armel/usr/lib/libgdal.so.1.17.1 + + my @cmd = ( + $cfg{gensymbols}, + '-p'.$pkg, + '-a'.$arch, + '-v'.$version, + '-I'.$file, + '-O'.$output, + '-e'.$library, + ); + + print "Exec: @cmd > $diff 2>&1\n" if($cfg{verbose}); + + `@cmd > $diff 2>&1`; + + + # cat debian/libgdal1h.symbols.armel.new | c++filt > debian/libgdal1h.symbols.armel.new.filt + + my $filt = $output.'.filt'; + + print "Exec: cat $output | $cfg{cppfilt} > $filt 2>&1\n" if($cfg{verbose}); + + `cat $output | $cfg{cppfilt} > $filt 2>&1`; + + # libgdal.so.1 libgdal1h #MINVER# + # | libgdal1h #MINVER#, libgdal.so.1-1.10.1 + # #include "libgdal1h.symbols.common" + + # libgdal.so.20 libgdal20 #MINVER# + # | libgdal20 #MINVER#, gdal-abi-2-0-0 + # #include "libgdal20.symbols.common" + + my $data = ''; + + my $i = 0; + foreach(read_file($filt)) { + if($i == 0 && /^ /) { + $_ = "#include \"${package}.symbols.common\"\n" . $_; + $i++; + } + $data .= $_; + } + + write_file($filt, $data); + + print "\n" if($cfg{verbose}); + + $symbols{$arch}{file} = $file; + $symbols{$arch}{new} = $output; + $symbols{$arch}{diff} = $diff; + $symbols{$arch}{filt} = $filt; + } + } + closedir DIR; + } + else { + print "Error: Cannot read/write directory: $dir\n"; + print "\n" if($cfg{verbose}); + return; + } +} + +sub find_library { + my (%args) = @_; + + my $dir = $args{dir}; + my $depth = $args{depth}; + $depth = 0 if(!$depth); + + my $max_depth = 5; + + if($depth == $max_depth) { + print "Not looking further, maximum depth reached: $depth\n" if($args{verbose}); + return; + } + + my $library = ''; + + if(-r $dir) { + print "Reading directory: $dir\n" if($args{verbose}); + + opendir(my $dh, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir $dh) { + next if(/^\.{1,2}$/); + + my $entry = $dir.$_; + + if(-d $entry) { + $library = find_library(%args, dir => $entry.'/', depth => $depth+1); + } + elsif(-f $entry && $entry =~ /\.so\.\d+\.\d+/) { + $library = $entry; + last; + } + } + closedir $dh; + + print "Library: $library\n" if($args{verbose}); + } + else { + print "Error: Cannot read directory: $dir\n"; + return; + } + + return $library; +} + +sub create_new_patch_files { + my (%args) = @_; + + # Create c++filt symbols files + + my $dir = $args{debian}; + + if(-r $dir && -w $dir) { + opendir(DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir DIR) { + # libgdal1h.symbols.amd64 + if(/^($args{package}).symbols.(\S+)$/) { + my $pkg = $1; + my $arch = $2; + my $file = $dir.$_; + + next if($arch eq 'common'); + next if($arch =~ /\.(new|diff|filt|patch|c\+\+|common|complete)$/); + + my $diff_file = $file.'.diff'; + my $new_file = $file.'.new'; + my $filt_file = $file.'.new.filt'; + my $patch_file = $file.'.new.patch'; + + if(-r $diff_file && -r $new_file && -r $filt_file) { + # Mark C++ symbols + + create_patch_file( + %args, + file1 => $new_file, + file2 => $filt_file, + patch => $patch_file, + ); + + $symbols{$arch}{patch} = $patch_file; + } + else { + print "Error: Cannot read all files: $diff_file, $new_file, $filt_file\n"; + next; + } + } + } + closedir DIR; + + print "\n" if($cfg{verbose}); + } + else { + print "Error: Cannot read/write directory: $dir\n"; + return; + } +} + +sub create_patch_file { + my (%args) = @_; + + return if(!$args{file1}); + return if(!$args{file2}); + return if(!$args{patch}); + + my @cmd = ( + $cfg{diff}, + '-u', + $args{file1}, + $args{file2}, + ); + + my $data = ''; + my $old = ''; + my $new = ''; + + foreach(`@cmd`) { + # --- debian/libgdal1h.symbols.amd64.new 2013-12-14 00:18:32.000000000 +0100 + if(/^\-\-\- (\S+\s+\d{4}.*?\S)\s*$/) { + $old = $1; + + $_ = ''; + } + # +++ debian/libgdal1h.symbols.amd64.new.filt 2013-12-14 01:44:01.000000000 +0100 + elsif(/^\+\+\+ (\S+\s+\d{4}.*?\S)\s*$/) { + $new = $1; + + $_ = '--- '. $new."\n" + . '+++ '. $old."\n" + ; + } + # + VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base 1.10.1 + elsif(/^\+ (.*?) (\d+\.\d+\.\d+\S*)\s*$/) { + $_ = '+ (c++)"'.$1.'" '.$2." 1\n"; + } + # + VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base 1.10.1 1 + elsif(/^\+ (.*?) (\d+\.\d+\.\d+\S*)(\s+\d+)\s*$/) { + $_ = '+ (c++)"'.$1.'" '.$2.$3."\n"; + } + + $data .= $_; + } + + print "Saving rewritten patch: $args{patch}\n" if($cfg{verbose}); + + write_file($args{patch}, $data); +} + +sub patch_new_files { + my (%args) = @_; + + # Apply c++filt symbols patches + + my $dir = $args{debian}; + + if(-r $dir && -w $dir) { + opendir(DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir DIR) { + # libgdal1h.symbols.amd64 + if(/^($args{package}).symbols.(\S+)$/) { + my $pkg = $1; + my $arch = $2; + my $file = $dir.$_; + + next if($arch eq 'common'); + next if($arch =~ /\.(new|diff|filt|patch|c\+\+|common|complete)$/); + + my $diff_file = $file.'.diff'; + my $new_file = $file.'.new'; + my $filt_file = $file.'.new.filt'; + my $patch_file = $file.'.new.patch'; + + if(-r $diff_file && -r $new_file && -r $filt_file && -r $patch_file) { + # Mark C++ symbols + + patch_file( + %args, + patch => $patch_file, + file => $new_file, + ); + + print "\n" if($cfg{verbose}); + } + else { + print "Error: Cannot read all files: $diff_file, $new_file, $filt_file, $patch_file\n"; + print "\n" if($cfg{verbose}); + next; + } + } + } + closedir DIR; + } + else { + print "Error: Cannot read/write directory: $dir\n"; + print "\n" if($cfg{verbose}); + return; + } +} + +sub patch_file { + my (%args) = @_; + + my @cmd = ( + $cfg{patch}, + '-p1', + '-i'.$args{patch}, + $args{file}, + ); + + print "Exec: @cmd\n" if($cfg{verbose}); + + my $exit = system(@cmd) >> 8; + if($exit != 0) { + print "Error: Command failed: @cmd ($exit)\n"; + exit $exit; + } +} + +sub split_new_files { + my (%args) = @_; + + # Split common and C++ symbols into seperate files. + + my $dir = $args{debian}; + + if(-r $dir && -w $dir) { + opendir(DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir DIR) { + # libgdal1h.symbols.amd64 + if(/^($args{package}).symbols.(\S+)$/) { + my $pkg = $1; + my $arch = $2; + my $file = $dir.$_; + + next if($arch eq 'common'); + next if($arch =~ /\.(new|diff|filt|patch|c\+\+|common|complete)$/); + + my $diff_file = $file.'.diff'; + my $new_file = $file.'.new'; + my $filt_file = $file.'.new.filt'; + my $patch_file = $file.'.new.patch'; + + if(-r $diff_file && -r $new_file && -r $filt_file && -r $patch_file) { + print "Splitting files for: $file\n" if($cfg{verbose}); + + my ($common, $cplus) = split_file( + %args, + file => $new_file, + ); + + $symbols{$arch}{common} = $common; + $symbols{$arch}{cplus} = $cplus; + } + else { + print "Error: Cannot read all files: $diff_file, $new_file, $filt_file, $patch_file\n"; + next; + } + } + } + closedir DIR; + + print "\n" if($cfg{verbose}); + } + else { + print "Error: Cannot read/write directory: $dir\n"; + return; + } +} + +sub split_file { + my (%args) = @_; + + return if(!$args{file}); + + if(-r $args{file}) { + my $common = ''; + my $cplus = ''; + + foreach(read_file($args{file})) { + if(/\(c\+\+\)/ || !/^ /) { + $cplus .= $_; + } + else { + $common .= $_; + } + } + + my $common_file = $args{file}.'.common'; + my $cplus_file = $args{file}.'.c++'; + + write_file($common_file, $common); + write_file($cplus_file, $cplus); + + return ($common_file, $cplus_file); + } +} + +sub compare_new_symbols { + my (%args) = @_; + + my $dir = $args{debian}; + + if(-r $dir && -w $dir) { + my %checksum = (); + + my $arch = 'common'; + my $file = $dir.$args{package}.'.symbols.'.$arch; + + print "Comparing symbols for: $file\n" if($cfg{verbose}); + + if(-r $file) { + my @items = (); + my @files = (); + + chomp(my $sha512sum = `$cfg{sha512sum} "$file" | cut -d' ' -f1`); + + print "$sha512sum $file\n" if($cfg{verbose}); + + $checksum{$arch} = $sha512sum; + + push @items, "$sha512sum $file"; + push @files, $file; + + my $identical = 1; + my @different = (); + + opendir(DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir DIR) { + # libgdal1h.symbols.amd64.new.common + if(/^($args{package}).symbols.(\S+).new.common$/) { + my $pkg2 = $1; + my $arch2 = $2; + my $file2 = $dir.$_; + + chomp(my $sha512sum = `$cfg{sha512sum} "$file2" | cut -d' ' -f1`); + + print "$sha512sum $file2\n" if($cfg{verbose}); + + $checksum{$arch2} = $sha512sum; + + push @items, "$sha512sum $file2"; + push @files, $file2; + + if($checksum{common} ne $sha512sum) { + $identical = 0; + + push @different, $file2; + + $items[-1] .= " *"; + } + } + } + closedir DIR; + + if(@different) { + print "\n" if($cfg{verbose}); + + if(!$cfg{no_diff}) { + foreach my $file2 (@different) { + my $old = $file; + my $new = $file2; + + my @cmd = ( + $cfg{diff}, + '-u', + $old, + $new, + ); + + print "Exec: @cmd\n" if($cfg{verbose}); + + my $exit = system(@cmd) >> 8; + + print "Exit: $exit\n" if($cfg{verbose}); + } + } + } + + if($identical) { + print "Current $arch symbols are identical to the new symbols, no update required.\n" if($cfg{verbose}); + } + else { + print "New $arch symbols different from the current symbols, update required!\n" if($cfg{verbose}); + + if(!$cfg{no_prompt}) { + my $result = prompt( + 'm', + { + prompt => "Select new symbols file to update current symbols file with:", + title => "Update symbols file $file", + items => \@items, + order => 'down', + cols => 1, + }, + "[0]", + 0, + ); + + if($result) { + print "New common symbols file selected: $items[$result]\n" if($cfg{verbose}); + + my $file1 = $files[$result]; + my $file2 = $file; + + if(-r $file1 && -w $file2) { + print "Copy: $file1 -> $file2\n" if($cfg{verbose}); + + copy($file1, $file2) || die "Error: Failed to copy $file1 to $file2 ($!)\n"; + } + else { + print "Error: Cannot read $file1 and/or write $file2\n"; + return; + } + } + else { + print "Current common symbols file selected, skipping update.\n" if($cfg{verbose}); + } + } + } + + print "\n" if($cfg{verbose}); + } + + opendir(DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir DIR) { + # libgdal1h.symbols.amd64 + if(/^($args{package}).symbols.(\S+)$/) { + my $pkg = $1; + my $arch = $2; + my $file = $dir.$_; + + next if($arch eq 'common'); + next if($arch =~ /\.(new|diff|filt|patch|c\+\+|common|complete)$/); + + print "Comparing symbols for: $file\n" if($cfg{verbose}); + + my $old = $file; + my $new = $file.'.new.c++'; + + if(!-r $new) { + print "Missing new $arch symbols, likely needs update later.\n" if($cfg{verbose}); + } + else { + chomp(my $old_sha512sum = `$cfg{sha512sum} "$old" 2> /dev/null | cut -d' ' -f1`); + chomp(my $new_sha512sum = `$cfg{sha512sum} "$new" 2> /dev/null | cut -d' ' -f1`); + + print "$old_sha512sum $old\n" if($cfg{verbose}); + print "$new_sha512sum $new\n" if($cfg{verbose}); + + if($old_sha512sum eq $new_sha512sum) { + print "Current symbols are identical to the new $arch symbols, no update required.\n" if($cfg{verbose}); + } + else { + if(!$cfg{no_diff}) { + my @cmd = ( + $cfg{diff}, + '-u', + $old, + $new, + ); + + print "Exec: @cmd\n" if($cfg{verbose}); + + my $exit = system(@cmd) >> 8; + + print "Exit: $exit\n" if($cfg{verbose}); + + print `@cmd | diffstat`; + } + + print "New $arch symbols different from the current symbols, update required!\n" if($cfg{verbose}); + + if(!$cfg{no_prompt}) { + my $help = $cfg{yes} ? "Y/n" : "y/N"; + my $default = $cfg{yes} ? "Y" : "N"; + + my $result = prompt( + 'y', + "Update symbols file for $arch?", + $help, + $default, + ); + + if($result) { + my $file1 = $new; + my $file2 = $old; + + if(-r $file1 && -w $file2) { + print "Copy: $file1 -> $file2\n" if($cfg{verbose}); + + copy($file1, $file2) || die "Error: Failed to copy $file1 to $file2 ($!)\n"; + } + else { + print "Error: Cannot read $file1 and/or write $file2\n"; + return; + } + } + else { + print "Skipping update.\n" if($cfg{verbose}); + } + } + } + } + + print "\n" if($cfg{verbose}); + } + } + closedir DIR; + } + else { + print "Error: Cannot read/write directory: $dir\n"; + print "\n" if($cfg{verbose}); + return; + } +} + +sub parse_symbols { + my (%args) = @_; + + return if (!$args{file} || !-r $args{file}); + + my %symbols = (); + + foreach(read_file($args{file})) { + # BSBClose@Base 1.8.0 + if(/^ (\S+)\s+(\d+\S+\d+)\s*$/) { + my $symbol = $1; + my $version = $2; + + $symbols{$symbol}{version} = $version; + } + # libgdal.so.20 libgdal20 #MINVER# + # | libgdal20 #MINVER#, gdal-abi-2-0-0 + # #include "libgdal20.symbols.common" + # (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 + elsif(/^ (\S+)\s+(\d+\S+\d+)\s*(\d+)\s*$/) { + my $symbol = $1; + my $version = $2; + my $template = $3; + + $symbols{$symbol}{version} = $version; + $symbols{$symbol}{template} = $template; + } + } + + return \%symbols; +} + +sub compare_common_symbols { + my (%args) = @_; + + return if(!$args{arch} || !$symbols{$args{arch}}{common} || !$symbols{common}{file}); + + if(!$symbols{common}{symbols}) { + $symbols{common}{symbols} = parse_symbols(%args, file => $symbols{common}{file}); + } + + $symbols{$args{arch}}{symbols} = parse_symbols(%args, file => $symbols{$args{arch}}{common}); + + print "Comparing symbols between $symbols{common}{file} and $symbols{$args{arch}}{common}...\n" if($cfg{verbose}); + + my %compare = (); + + foreach my $symbol (sort keys %{$symbols{common}{symbols}}) { + $compare{$symbol}{old} = $symbols{common}{symbols}{$symbol}; + } + foreach my $symbol (sort keys %{$symbols{$args{arch}}{symbols}}) { + $compare{$symbol}{new} = $symbols{$args{arch}}{symbols}{$symbol}; + } + + my $changes = 0; + + foreach my $symbol (sort keys %compare) { + if(!$compare{$symbol}{old} || !$compare{$symbol}{new}) { + if(!$compare{$symbol}{old}) { + print "Symbol not in old: $symbol ($symbols{common}{file})\n" if($cfg{verbose}); + } + if(!$compare{$symbol}{new}) { + print "Symbol not in new: $symbol ($symbols{$args{arch}}{common})\n" if($cfg{verbose}); + } + + $changes++; + } + } + + return $changes; +} + +sub new_architecture_symbols { + my (%args) = @_; + + my $dir = $args{pkgdir}; + + if(-r $dir && -w $dir) { + print "Creating symbols files for new architectures...\n" if($cfg{verbose}); + + my $new = 0; + + opendir(my $DIR, $dir) || die "Error: Cannot open directory: $dir ($!)"; + while(readdir $DIR) { + # libgdal1h_1.10.1+dfsg-1_amd64.deb + if(/^($args{package})_(\S+)_(\S+)\.deb$/) { + my $pkg = $1; + my $version = $2; + my $arch = $3; + my $file = $dir.$_; + my $pkgdir = $dir.$pkg.'_'.$version.'_'.$arch.'/'; + + my $upstream_version = upstream_version($version); + + next if($symbols{$arch}); + + # download all previous versions + download_packages(%args, architecture => $arch, version => 'all'); + + # unpack all previous versions + unpack_packages(%args, architecture => $arch, version => 'all'); + + # generate symbols for all versions + foreach my $version (@versions) { + my $library = ''; + + my $pkg_dir = $args{pkgdir}; + if(-r $pkg_dir) { + my $dir = $pkg_dir.$pkg.'_'.$version.'_'.$arch.'/'; + if(!-r $dir) { + print "Warning: Cannot read package directory: $dir\n"; + next; + } + + $library = find_library(%args, dir => $dir.'/usr/lib/', verbose => 0); + } + else { + print "Warning: Cannot read package directory: $pkg_dir\n"; + print "\n" if($cfg{verbose}); + next; + } + + if(!$library) { + print "Warning: Cannot find library!\n"; + print "\n" if($cfg{verbose}); + next; + } + + my $upstream_version = upstream_version($version); + + my $file = $args{debian}.$pkg.'.symbols.'.$arch; + my $diff = $file.'.diff'; + + # dpkg-gensymbols -plibgdal1h -aarmel -v1.10.1 -Odebian/libgdal1h.symbols.armel -ebinary-libgdal1h/libgdal1h_1.10.1+dfsg-1_armel/usr/lib/libgdal.so.1.17.1 + + my @cmd = ( + $cfg{gensymbols}, + '-p'.$pkg, + '-a'.$arch, + '-v'.$upstream_version, + '-O'.$file, + '-e'.$library, + ); + + print "Exec: @cmd > $diff 2>&1\n" if($cfg{verbose}); + + `@cmd > $diff 2>&1`; + + $symbols{$arch}{file} = $file; + $symbols{$arch}{diff} = $diff; + } + + # Mark C++ symbols using c++filt + if($symbols{$arch}{file}) { + # cat debian/libgdal1h.symbols.armel | c++filt > debian/libgdal1h.symbols.armel.filt + + my $filt = $symbols{$arch}{file}.'.filt'; + + print "Exec: cat $symbols{$arch}{file} | $cfg{cppfilt} > $filt 2>&1\n" if($cfg{verbose}); + + `cat $symbols{$arch}{file} | $cfg{cppfilt} > $filt 2>&1`; + + # libgdal.so.1 libgdal1h #MINVER# + # | libgdal1h #MINVER#, libgdal.so.1-1.10.1 + # #include "libgdal1h.symbols.common" + + # libgdal.so.20 libgdal20 #MINVER# + # | libgdal20 #MINVER#, gdal-abi-2-0-0 + # #include "libgdal20.symbols.common" + + my $data = ''; + + my $control = $cfg{debian} .'control'; + + my $abi = ''; + + foreach(read_file($control)) { + if(/^Provides: (gdal-abi-\d+-\d+-\d+)/) { + $abi = $1; + + last; + } + } + + if(!$abi) { + print "Error: Failed to extract ABI dependency from control file: $control\n"; + exit 1; + } + + my $i = 0; + foreach(read_file($filt)) { + if($i == 0 && /^ /) { + $_ = "#include \"${pkg}.symbols.common\"\n" . $_; + $_ = "* Build-Depends-Package: libgdal-dev\n" . $_; + $_ = "| ${pkg} #MINVER#, $abi\n" . $_; + + $i++; + } + + $data .= $_; + } + + write_file($filt, $data); + + print "\n" if($cfg{verbose}); + + $symbols{$arch}{filt} = $filt; + } + + # Create & apply patch file for enhanced C++ symbols + if($symbols{$arch}{file} && $symbols{$arch}{filt}) { + my $patch_file = $symbols{$arch}{file}.'.patch'; + + create_patch_file( + %args, + file1 => $symbols{$arch}{file}, + file2 => $symbols{$arch}{filt}, + patch => $patch_file, + ); + + patch_file( + %args, + patch => $patch_file, + file => $symbols{$arch}{file}, + ); + + $symbols{$arch}{patch} = $patch_file; + } + + # split common & C++ symbols + if($symbols{$arch}{file} && $symbols{$arch}{filt} && $symbols{$arch}{patch}) { + my ($common, $cplus) = split_file( + %args, + file => $symbols{$arch}{file}, + ); + + $symbols{$arch}{common} = $common; + $symbols{$arch}{cplus} = $cplus; + } + + # compare with existing common symbols + if($symbols{$arch}{file} && $symbols{$arch}{common} && $symbols{$arch}{cplus}) { + if(!$symbols{common}{file}) { + $symbols{common}{file} = $args{debian}.$args{package}.'.symbols.common'; + } + + my $changes = compare_common_symbols( + %args, + arch => $arch, + ); + + if(!$changes) { + print "Current common symbols are identical to the $arch common symbols, no update required.\n" if($cfg{verbose}); + + # Replace architecture symbols file with C++ symbols only + + my $file1 = $symbols{$arch}{cplus}; + my $file2 = $symbols{$arch}{file}; + + if(-r $file1 && -w $file2) { + print "Copy: $file1 -> $file2\n" if($cfg{verbose}); + + copy($file1, $file2) || die "Error: Failed to copy $file1 to $file2 ($!)\n"; + } + else { + print "Warning: Cannot read $file1 and/or write $file2\n"; + next; + } + } + else { + print "New $arch common symbols different from the current common symbols, update required!\n" if($cfg{verbose}); + } + } + + $new++; + + print "\n" if($cfg{verbose}); + } + } + closedir $DIR; + + print "No new architectures found.\n" if(!$new && $cfg{verbose}); + } + else { + print "Error: Cannot read/write directory: $dir\n"; + return; + } +} + +sub clean_temp_files { + my (%args) = @_; + + print "Removing files:\n" if($cfg{verbose}); + + my $i = 0; + foreach my $arch (sort keys %symbols) { + next if($arch eq 'common'); + + foreach my $key (sort keys %{$symbols{$arch}}) { + next if($key eq 'file' || $key eq 'symbols' || !-r $symbols{$arch}{$key}); + + print " $symbols{$arch}{$key}" if($cfg{verbose}); + + unlink($symbols{$arch}{$key}) || die "Error: Failed to unlink: $symbols{$arch}{$key} ($!)"; + } + + $i++; + + print "\n" if($cfg{verbose}); + } + + print "\n" if($cfg{verbose}); +} + +sub upstream_version { + my $version = shift; + + $version =~ s/(\+dfsg\d*)?-\d+(\~\w+)?(\+b\d+)?$//; + + return $version; +} + diff --git a/gdal/debian/libgdal-dev.NEWS b/gdal/debian/libgdal-dev.NEWS new file mode 100644 index 000000000000..0be220a86d52 --- /dev/null +++ b/gdal/debian/libgdal-dev.NEWS @@ -0,0 +1,26 @@ +gdal (1.8.0-2) unstable; urgency=low + + Starting from this version GDAL follows the regular SONAME of the C API + interface which has to be considered the only officially supported. + The library still exports C++ symbols but the Debian package has introduced + symbol files and symbol versioning in order to track changes and possibly + introduce ad hoc patches whenever requiredi, in order to minimize the number + of manual rebuilds of reverse dependencies. The good side effect of + versioning script is that all symbols exported by the library which are + not part of the GDAL/OGR API set are now definitively hidden. + The use of symbol versioning could possibly introduce breakages against + third parties binaries not built against the Debian version. Be warned. + + -- Francesco Paolo Lovergine Thu, 06 Oct 2011 11:41:44 +0200 + +gdal (1.5.0-3) unstable; urgency=low + + GDAL deprecated the old-style Python binding starting from 1.5 branch, so + it has been dropped in Debian. Generally you should not experience big + problems, because almost all API functions are supported by the new + Swig-based binding. If not, consider that you need to upgrade to the + current interface. + The old bindings use Numeric, the new SWIG-based use NumPy, for all + the rest refer to GDAL documentation. + + -- Francesco Paolo Lovergine Tue, 29 Jan 2008 12:37:07 +0100 diff --git a/gdal/debian/libgdal-dev.install b/gdal/debian/libgdal-dev.install new file mode 100644 index 000000000000..e44c6fc07838 --- /dev/null +++ b/gdal/debian/libgdal-dev.install @@ -0,0 +1,6 @@ +usr/bin/gdal-config +usr/include +usr/lib/libgdal.a +usr/lib/libgdal.so +usr/lib/pkgconfig/gdal.pc +usr/share/man/man1/gdal-config.1 diff --git a/gdal/debian/libgdal-dev.lintian-overrides b/gdal/debian/libgdal-dev.lintian-overrides new file mode 100644 index 000000000000..c85d2d2c6cd8 --- /dev/null +++ b/gdal/debian/libgdal-dev.lintian-overrides @@ -0,0 +1,9 @@ +# Man pages are automatically generated with sphinx. +hyphen-used-as-minus-sign + +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * + +# GDAL doesn't use Multi-Arch, it breaks too many rdeps +pkg-config-unavailable-for-cross-compilation usr/lib/pkgconfig/gdal.pc + diff --git a/gdal/debian/libgdal-doc.doc-base b/gdal/debian/libgdal-doc.doc-base new file mode 100644 index 000000000000..2947416aea7f --- /dev/null +++ b/gdal/debian/libgdal-doc.doc-base @@ -0,0 +1,8 @@ +Document: gdal-ogr +Title: GDAL/OGR Documentation +Abstract: This manual describes the GDAL/OGR APIs and associated utilities. +Section: Science/Geoscience + +Format: HTML +Index: /usr/share/doc/libgdal-doc/gdal/index.html +Files: /usr/share/doc/libgdal-doc/gdal/*.html diff --git a/gdal/debian/libgdal-doc.install b/gdal/debian/libgdal-doc.install new file mode 100644 index 000000000000..c25408c34778 --- /dev/null +++ b/gdal/debian/libgdal-doc.install @@ -0,0 +1 @@ +usr/share/doc/libgdal-doc/gdal diff --git a/gdal/debian/libgdal-doc.links b/gdal/debian/libgdal-doc.links new file mode 100644 index 000000000000..ff9df2edf7bd --- /dev/null +++ b/gdal/debian/libgdal-doc.links @@ -0,0 +1 @@ +usr/share/javascript/jquery/jquery.js usr/share/doc/libgdal-doc/gdal/jquery.js diff --git a/gdal/debian/libgdal-doc.lintian-overrides b/gdal/debian/libgdal-doc.lintian-overrides new file mode 100644 index 000000000000..b139ce011a67 --- /dev/null +++ b/gdal/debian/libgdal-doc.lintian-overrides @@ -0,0 +1,3 @@ +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * + diff --git a/gdal/debian/libgdal-java.install b/gdal/debian/libgdal-java.install new file mode 100644 index 000000000000..ca4ff23fa4eb --- /dev/null +++ b/gdal/debian/libgdal-java.install @@ -0,0 +1,2 @@ +usr/lib/jni/* +usr/share/java/* diff --git a/gdal/debian/libgdal-java.lintian-overrides b/gdal/debian/libgdal-java.lintian-overrides new file mode 100644 index 000000000000..c223a9cfc929 --- /dev/null +++ b/gdal/debian/libgdal-java.lintian-overrides @@ -0,0 +1,5 @@ +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * + +# Cannot easily be fixed +file-references-package-build-path * diff --git a/gdal/debian/libgdal-perl-doc.doc-base b/gdal/debian/libgdal-perl-doc.doc-base new file mode 100644 index 000000000000..e16f8bdad8fd --- /dev/null +++ b/gdal/debian/libgdal-perl-doc.doc-base @@ -0,0 +1,8 @@ +Document: libgdal-perl +Title: GDAL Perl API Documentation +Abstract: This manual describes the GDAL Perl API. +Section: Science/Geoscience + +Format: HTML +Index: /usr/share/doc/libgdal-perl-doc/html/index.html +Files: /usr/share/doc/libgdal-perl-doc/html/*.html diff --git a/gdal/debian/libgdal-perl-doc.docs b/gdal/debian/libgdal-perl-doc.docs new file mode 100644 index 000000000000..d16f1f6b82ef --- /dev/null +++ b/gdal/debian/libgdal-perl-doc.docs @@ -0,0 +1 @@ +swig/perl/doc/* diff --git a/gdal/debian/libgdal-perl.doc-base b/gdal/debian/libgdal-perl.doc-base new file mode 100644 index 000000000000..940510a326ed --- /dev/null +++ b/gdal/debian/libgdal-perl.doc-base @@ -0,0 +1,8 @@ +Document: libgdal-perl +Title: GDAL Perl API Documentation +Abstract: This manual describes the GDAL Perl API. +Section: Science/Geoscience + +Format: HTML +Index: /usr/share/doc/libgdal-perl/html/index.html +Files: /usr/share/doc/libgdal-perl/html/*.html diff --git a/gdal/debian/libgdal-perl.docs b/gdal/debian/libgdal-perl.docs new file mode 100644 index 000000000000..d16f1f6b82ef --- /dev/null +++ b/gdal/debian/libgdal-perl.docs @@ -0,0 +1 @@ +swig/perl/doc/* diff --git a/gdal/debian/libgdal-perl.install b/gdal/debian/libgdal-perl.install new file mode 100755 index 000000000000..9ac6d673e8c8 --- /dev/null +++ b/gdal/debian/libgdal-perl.install @@ -0,0 +1,4 @@ +#!/usr/bin/perl -w +use Config; +print substr($Config{vendorarch}, 1) . "\n"; +print "usr/share/man/man3/Geo::GDAL.3pm\n"; diff --git a/gdal/debian/libgdal-perl.links b/gdal/debian/libgdal-perl.links new file mode 100644 index 000000000000..9e319de75d15 --- /dev/null +++ b/gdal/debian/libgdal-perl.links @@ -0,0 +1 @@ +usr/share/javascript/jquery/jquery.js usr/share/doc/libgdal-perl/html/jquery.js diff --git a/gdal/debian/libgdal-perl.lintian-overrides b/gdal/debian/libgdal-perl.lintian-overrides new file mode 100644 index 000000000000..c223a9cfc929 --- /dev/null +++ b/gdal/debian/libgdal-perl.lintian-overrides @@ -0,0 +1,5 @@ +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * + +# Cannot easily be fixed +file-references-package-build-path * diff --git a/gdal/debian/libgdal20.install b/gdal/debian/libgdal20.install new file mode 100644 index 000000000000..803c48246f24 --- /dev/null +++ b/gdal/debian/libgdal20.install @@ -0,0 +1 @@ +usr/lib/libgdal.so.* diff --git a/gdal/debian/libgdal20.lintian-overrides b/gdal/debian/libgdal20.lintian-overrides new file mode 100644 index 000000000000..ec544695d6db --- /dev/null +++ b/gdal/debian/libgdal20.lintian-overrides @@ -0,0 +1,8 @@ +# False positive on: {136, "Socialist Republic of Viet Nam"}, +spelling-error-in-binary * Nam Name + +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * + +# Cannot easily be fixed +file-references-package-build-path * diff --git a/gdal/debian/libgdal20.symbols.alpha b/gdal/debian/libgdal20.symbols.alpha new file mode 100644 index 000000000000..b712638a587f --- /dev/null +++ b/gdal/debian/libgdal20.symbols.alpha @@ -0,0 +1,4638 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.0 1 + (c++)"PamCleanProxyDB()@Base" 1.10.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.2 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.2 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.0 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.2 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.2 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.2 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.2 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.2 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.2 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.2 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.2 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.2 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.2 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.0 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.2 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.2 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.2 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.2 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.0 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.2 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.2 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.2 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.2 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Init(bool)@Base" 2.2.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.2 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::Reference()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.2 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.2 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLStringList::Initialize()@Base" 1.10.0 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::Sort()@Base" 1.10.0 1 + (c++)"CPLStringList::Clear()@Base" 1.10.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::StealList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.2 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 1.10.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 1.10.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::Init(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.2 1 + (c++)"VSIFileManager::Get()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::Init()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetName()@Base" 1.10.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRPoint::empty()@Base" 1.10.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.0 1 + (c++)"CPLString::tolower()@Base" 1.10.0 1 + (c++)"CPLString::toupper()@Base" 1.10.0 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag)@Base" 1.10.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.0 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::Open(int)@Base" 1.10.0 1 + (c++)"S57Reader::Close()@Base" 1.10.0 1 + (c++)"S57Reader::Ingest()@Base" 1.10.0 1 + (c++)"S57Reader::Rewind()@Base" 1.10.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::Close()@Base" 1.10.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int)@Base" 2.0.2 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int)@Base" 2.0.2 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, __va_list_tag), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::Count() const@Base" 1.10.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.2 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.2 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.2 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPoint::clone() const@Base" 1.10.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 1.10.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.2 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::find(std::vector > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.2 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRFeature*&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRSpatialReference*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(OGRCurve*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_insert_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRGeomFieldDefn*&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(VSIFilesystemHandler* const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator const, CPLString> > std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, CPLString> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.0 1 + (c++)"vtable for MEMDataset@Base" 1.10.0 1 + (c++)"vtable for OGRFeature@Base" 1.10.0 1 + (c++)"vtable for OGRPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRSurface@Base" 1.10.0 1 + (c++)"vtable for RawDataset@Base" 1.10.0 1 + (c++)"vtable for VRTDataset@Base" 1.10.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.10.0 1 + (c++)"vtable for OGRGeometry@Base" 1.10.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.0 1 + (c++)"vtable for OGRStylePen@Base" 1.10.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRDataSource@Base" 1.10.0 1 + (c++)"vtable for OGRLineString@Base" 1.10.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.0 1 + (c++)"vtable for RawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.2 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.2 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.2 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.0 1 + (c++)"vtable for OGRLayer@Base" 1.10.0 1 + (c++)"vtable for OGRPoint@Base" 1.10.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 diff --git a/gdal/debian/libgdal20.symbols.amd64 b/gdal/debian/libgdal20.symbols.amd64 new file mode 100644 index 000000000000..55c441687e25 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.amd64 @@ -0,0 +1,4796 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.8.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.8.0 1 + (c++)"PamCleanProxyDB()@Base" 1.8.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.8.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.8.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.8.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.8.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.8.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.8.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.8.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.8.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.8.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.8.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.8.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.8.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.8.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.8.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.8.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.8.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.8.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.8.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.8.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.8.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.8.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.8.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.8.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.8.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.8.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.8.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.8.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.8.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.8.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.8.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 1.9.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.8.0 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 1.9.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.8.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.8.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.8.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.8.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.8.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.8.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.8.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.8.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.8.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.8.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.8.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.8.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.8.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.8.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRPoint::empty()@Base" 1.8.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.8.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.8.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.8.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag*)@Base" 1.9.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.8.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.8.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.8.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::Open(int)@Base" 1.8.0 1 + (c++)"S57Reader::Close()@Base" 1.8.0 1 + (c++)"S57Reader::Ingest()@Base" 1.8.0 1 + (c++)"S57Reader::Rewind()@Base" 1.8.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.8.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.8.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.8.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.8.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::Close()@Base" 1.8.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, __va_list_tag*), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.8.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.8.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.8.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.8.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.8.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.8.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.8.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.8.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.8.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.8.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPoint::clone() const@Base" 1.8.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.8.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 1.9.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::find(std::vector > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"std::pair* std::__uninitialized_copy::__uninit_copy*>, std::pair*>(std::move_iterator*>, std::move_iterator*>, std::pair*)@Base" 2.3.2 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.8.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator >&&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator >&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator const, std::vector > > > std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector > > >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_lower_bound(std::_Rb_tree_node > const, std::pair > >*, std::_Rb_tree_node_base*, std::vector > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, char const*)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.8.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.8.0 1 + (c++)"vtable for MEMDataset@Base" 1.8.0 1 + (c++)"vtable for OGRFeature@Base" 1.8.0 1 + (c++)"vtable for OGRPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRSurface@Base" 1.8.0 1 + (c++)"vtable for RawDataset@Base" 1.8.0 1 + (c++)"vtable for VRTDataset@Base" 1.8.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.8.0 1 + (c++)"vtable for OGRGeometry@Base" 1.8.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.8.0 1 + (c++)"vtable for OGRStylePen@Base" 1.8.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.8.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRDataSource@Base" 1.8.0 1 + (c++)"vtable for OGRLineString@Base" 1.8.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.8.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.8.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.8.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.8.0 1 + (c++)"vtable for RawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.8.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.8.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.8.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.8.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.8.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.8.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.8.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.8.0 1 + (c++)"vtable for OGRLayer@Base" 1.8.0 1 + (c++)"vtable for OGRPoint@Base" 1.8.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.arm64 b/gdal/debian/libgdal20.symbols.arm64 new file mode 100644 index 000000000000..367f9e821aae --- /dev/null +++ b/gdal/debian/libgdal20.symbols.arm64 @@ -0,0 +1,4796 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, std::__va_list)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.1 1 + (c++)"PamCleanProxyDB()@Base" 1.10.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.1 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.1 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.1 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.1 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.1 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.1 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.1 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.1 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.1 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.1 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.1 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.1 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.1 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.1 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.1 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.1 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.1 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::Sort()@Base" 1.10.1 1 + (c++)"CPLStringList::Clear()@Base" 1.10.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::StealList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.1 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.1 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.1 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.1 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 1.10.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 1.10.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.1 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.1 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.1 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.1 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.1 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.1 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.1 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.1 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.1 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.1 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.1 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.1 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.1 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.1 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.1 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.1 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.1 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.1 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.1 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.1 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.1 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.1 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.1 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.1 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.1 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.1 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.1 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.1 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.1 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.1 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.1 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.1 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.1 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.1 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.1 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.1 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.1 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.1 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.1 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.1 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.1 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.1 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.1 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.10.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.1 1 + (c++)"OGRLayer::Reference()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRPoint::empty()@Base" 1.10.1 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.1 1 + (c++)"CPLString::tolower()@Base" 1.10.1 1 + (c++)"CPLString::toupper()@Base" 1.10.1 1 + (c++)"CPLString::vPrintf(char const*, std::__va_list)@Base" 1.10.1 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.1 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.1 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::Open(int)@Base" 1.10.1 1 + (c++)"S57Reader::Close()@Base" 1.10.1 1 + (c++)"S57Reader::Ingest()@Base" 1.10.1 1 + (c++)"S57Reader::Rewind()@Base" 1.10.1 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.1 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::Close()@Base" 1.10.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.1 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.1 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.1 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.1 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, std::__va_list), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.1 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.1 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.1 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.1 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.1 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.1 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::Count() const@Base" 1.10.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.1 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.1 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.1 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.1 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.1 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.1 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.1 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.1 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.1 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.1 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.1 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPoint::clone() const@Base" 1.10.1 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.1 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 1.10.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::find(std::vector > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"std::pair* std::__uninitialized_copy::__uninit_copy*>, std::pair*>(std::move_iterator*>, std::move_iterator*>, std::pair*)@Base" 2.3.2 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator >&&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator >&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator const, std::vector > > > std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector > > >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.1 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_lower_bound(std::_Rb_tree_node > const, std::pair > >*, std::_Rb_tree_node_base*, std::vector > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 1.11.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, char const*)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.1 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.1 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.1 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.1 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.1 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.1 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.1 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.1 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.1 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.1 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.1 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.1 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.1 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.1 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.1 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.1 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.1 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.1 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.1 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.1 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.1 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.1 1 + (c++)"vtable for MEMDataset@Base" 1.10.1 1 + (c++)"vtable for OGRFeature@Base" 1.10.1 1 + (c++)"vtable for OGRPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRSurface@Base" 1.10.1 1 + (c++)"vtable for RawDataset@Base" 1.10.1 1 + (c++)"vtable for VRTDataset@Base" 1.10.1 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.10.1 1 + (c++)"vtable for OGRGeometry@Base" 1.10.1 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.1 1 + (c++)"vtable for OGRStylePen@Base" 1.10.1 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.1 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRDataSource@Base" 1.10.1 1 + (c++)"vtable for OGRLineString@Base" 1.10.1 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.1 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.1 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.1 1 + (c++)"vtable for RawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.1 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.1 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.1 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.1 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.1 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.1 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.1 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.1 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.1 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.1 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.1 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.1 1 + (c++)"vtable for OGRLayer@Base" 1.10.1 1 + (c++)"vtable for OGRPoint@Base" 1.10.1 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.1 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.armel b/gdal/debian/libgdal20.symbols.armel new file mode 100644 index 000000000000..4b5f4c3578cf --- /dev/null +++ b/gdal/debian/libgdal20.symbols.armel @@ -0,0 +1,4734 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, std::__va_list)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.8.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.8.0 1 + (c++)"PamCleanProxyDB()@Base" 1.8.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.8.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.8.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.8.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.8.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.8.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.8.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.8.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.8.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.8.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.8.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.8.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.8.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.8.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.8.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.8.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.8.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.8.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.8.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.8.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.8.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.8.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.8.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.8.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.8.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.8.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.8.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.8.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.8.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.8.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.8.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.8.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.8.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.8.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.8.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.8.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.8.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.8.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.8.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.8.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.8.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.8.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.8.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.8.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.8.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.8.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.8.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.8.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRPoint::empty()@Base" 1.8.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.8.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.8.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.8.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, std::__va_list)@Base" 1.8.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.8.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.8.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.8.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::Open(int)@Base" 1.8.0 1 + (c++)"S57Reader::Close()@Base" 1.8.0 1 + (c++)"S57Reader::Ingest()@Base" 1.8.0 1 + (c++)"S57Reader::Rewind()@Base" 1.8.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.8.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.8.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.8.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.8.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::Close()@Base" 1.8.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, std::__va_list), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.8.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.8.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.8.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.8.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.8.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.8.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.8.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.8.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.8.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.8.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPoint::clone() const@Base" 1.8.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.8.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.8.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::__shared_count<(__gnu_cxx::_Lock_policy)1>::__shared_count(MVTTileLayer*)@Base" 2.3.0 1 + (c++)"std::__shared_count<(__gnu_cxx::_Lock_policy)1>::__shared_count(MVTTileLayer*)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.8.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.8.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_equal, std::allocator > > > >(std::pair, std::allocator > > >&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.8.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::find(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::find(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for __gnu_cxx::__mutex@Base" 2.2.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for __gnu_cxx::__mutex@Base" 2.2.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.8.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.8.0 1 + (c++)"vtable for MEMDataset@Base" 1.8.0 1 + (c++)"vtable for OGRFeature@Base" 1.8.0 1 + (c++)"vtable for OGRPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRSurface@Base" 1.8.0 1 + (c++)"vtable for RawDataset@Base" 1.8.0 1 + (c++)"vtable for VRTDataset@Base" 1.8.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.8.0 1 + (c++)"vtable for OGRGeometry@Base" 1.8.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.8.0 1 + (c++)"vtable for OGRStylePen@Base" 1.8.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.8.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRDataSource@Base" 1.8.0 1 + (c++)"vtable for OGRLineString@Base" 1.8.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.8.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.8.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.8.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.8.0 1 + (c++)"vtable for RawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.8.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.8.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.8.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.8.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.8.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.8.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.8.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.8.0 1 + (c++)"vtable for OGRLayer@Base" 1.8.0 1 + (c++)"vtable for OGRPoint@Base" 1.8.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.armhf b/gdal/debian/libgdal20.symbols.armhf new file mode 100644 index 000000000000..c54aa5a16d77 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.armhf @@ -0,0 +1,4729 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, std::__va_list)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.8.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.8.0 1 + (c++)"PamCleanProxyDB()@Base" 1.8.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.8.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.8.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.8.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.8.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.8.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.8.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.8.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.8.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.8.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.8.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.8.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.8.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.8.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.8.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.8.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.8.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.8.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.8.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.8.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.8.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.8.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.8.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.8.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.8.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.8.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.8.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.8.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.8.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.8.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.8.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.8.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.8.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.8.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.8.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.8.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.8.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.8.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.8.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.8.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.8.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.8.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.8.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.8.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.8.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.8.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.8.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.8.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRPoint::empty()@Base" 1.8.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.8.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.8.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.8.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, std::__va_list)@Base" 1.8.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.8.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.8.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.8.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::Open(int)@Base" 1.8.0 1 + (c++)"S57Reader::Close()@Base" 1.8.0 1 + (c++)"S57Reader::Ingest()@Base" 1.8.0 1 + (c++)"S57Reader::Rewind()@Base" 1.8.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.8.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.8.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.8.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.8.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::Close()@Base" 1.8.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, std::__va_list), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.8.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.8.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.8.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.8.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.8.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.8.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.8.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.8.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.8.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.8.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPoint::clone() const@Base" 1.8.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.8.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.8.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.8.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.8.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_equal, std::allocator > > > >(std::pair, std::allocator > > >&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.8.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::find(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::find(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.8.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.8.0 1 + (c++)"vtable for MEMDataset@Base" 1.8.0 1 + (c++)"vtable for OGRFeature@Base" 1.8.0 1 + (c++)"vtable for OGRPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRSurface@Base" 1.8.0 1 + (c++)"vtable for RawDataset@Base" 1.8.0 1 + (c++)"vtable for VRTDataset@Base" 1.8.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.8.0 1 + (c++)"vtable for OGRGeometry@Base" 1.8.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.8.0 1 + (c++)"vtable for OGRStylePen@Base" 1.8.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.8.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRDataSource@Base" 1.8.0 1 + (c++)"vtable for OGRLineString@Base" 1.8.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.8.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.8.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.8.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.8.0 1 + (c++)"vtable for RawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.8.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.8.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.8.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.8.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.8.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.8.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.8.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.8.0 1 + (c++)"vtable for OGRLayer@Base" 1.8.0 1 + (c++)"vtable for OGRPoint@Base" 1.8.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.common b/gdal/debian/libgdal20.symbols.common new file mode 100644 index 000000000000..c894c2e277a1 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.common @@ -0,0 +1,1778 @@ + BSBClose@Base 1.8.0 + BSBCreate@Base 1.8.0 + BSBOpen@Base 1.8.0 + BSBReadScanline@Base 1.8.0 + BSBWritePCT@Base 1.8.0 + BSBWriteScanline@Base 1.8.0 + CPLAcquireLock@Base 2.0.1 + CPLAcquireMutex@Base 1.8.0 + CPLAddXMLAttributeAndValue@Base 2.0.1 + CPLAddXMLChild@Base 1.8.0 + CPLAddXMLSibling@Base 1.8.0 + CPLAtoGIntBig@Base 2.0.1 + CPLAtoGIntBigEx@Base 2.0.1 + CPLAtof@Base 1.8.0 + CPLAtofDelim@Base 1.8.0 + CPLAtofM@Base 1.8.0 + CPLAtomicAdd@Base 1.8.0 + CPLBase64DecodeInPlace@Base 1.8.0 + CPLBase64Encode@Base 1.9.0 + CPLBinaryToHex@Base 1.8.0 + CPLCalloc@Base 1.8.0 + CPLCheckForFile@Base 1.8.0 + CPLCleanTrailingSlash@Base 1.8.0 + CPLCleanXMLElementName@Base 1.8.0 + CPLCleanupErrorMutex@Base 1.10.1 + CPLCleanupMasterMutex@Base 1.10.1 + CPLCleanupSharedFileMutex@Base 1.10.1 + CPLCleanupTLS@Base 1.8.0 + CPLClearRecodeWarningFlags@Base 1.10.1 + CPLCloneXMLTree@Base 1.8.0 + CPLCloseFileInZip@Base 1.8.0 + CPLCloseShared@Base 1.8.0 + CPLCloseZip@Base 1.8.0 + CPLCondBroadcast@Base 1.10.1 + CPLCondSignal@Base 1.10.1 + CPLCondWait@Base 1.10.1 + CPLCopyFile@Base 1.8.0 + CPLCopyTree@Base 2.0.1 + CPLCorrespondingPaths@Base 1.8.0 + CPLCreateCond@Base 1.10.1 + CPLCreateFileInZip@Base 1.8.0 + CPLCreateJoinableThread@Base 1.10.1 + CPLCreateLock@Base 2.0.1 + CPLCreateMutex@Base 1.8.0 + CPLCreateMutexEx@Base 2.0.1 + CPLCreateOrAcquireLock@Base 2.0.1 + CPLCreateOrAcquireMutex@Base 1.8.0 + CPLCreateOrAcquireMutexEx@Base 2.0.1 + CPLCreateThread@Base 1.8.0 + CPLCreateXMLElementAndValue@Base 1.8.0 + CPLCreateXMLNode@Base 1.8.0 + CPLCreateZip@Base 1.8.0 + CPLDMSToDec@Base 1.8.0 + CPLDebug@Base 1.8.0 + CPLDecToDMS@Base 1.8.0 + CPLDecToPackedDMS@Base 1.8.0 + CPLDefaultErrorHandler@Base 1.8.0 + CPLDefaultFindFile@Base 1.8.0 + CPLDestroyCond@Base 1.10.1 + CPLDestroyLock@Base 2.0.1 + CPLDestroyMutex@Base 1.8.0 + CPLDestroyXMLNode@Base 1.8.0 + CPLDumpSharedList@Base 1.8.0 + CPLEmergencyError@Base 1.9.0 + CPLEncodingCharSize@Base 1.9.0 + CPLError@Base 1.8.0 + CPLErrorReset@Base 1.8.0 + CPLErrorSetState@Base 2.0.1 + CPLErrorV@Base 1.8.0 + CPLEscapeString@Base 1.8.0 + CPLExpandTilde@Base 2.2.0 + CPLExtractRelativePath@Base 1.8.0 + CPLFGets@Base 1.8.0 + CPLFetchBool@Base 2.1.0 + CPLFindFile@Base 1.8.0 + CPLFinderClean@Base 1.8.0 + CPLForceToASCII@Base 1.8.0 + CPLFormCIFilename@Base 1.8.0 + CPLFormFilename@Base 1.8.0 + CPLFreeConfig@Base 1.8.0 + CPLGenerateTempFilename@Base 1.8.0 + CPLGetBasename@Base 1.8.0 + CPLGetConfigOption@Base 1.8.0 + CPLGetConfigOptions@Base 2.2.0 + CPLGetCurrentDir@Base 1.8.0 + CPLGetCurrentProcessID@Base 2.1.0 + CPLGetDirname@Base 1.8.0 + CPLGetErrorCounter@Base 2.3.0 + CPLGetErrorHandlerUserData@Base 1.9.0 + CPLGetExecPath@Base 1.8.0 + CPLGetExtension@Base 1.8.0 + CPLGetFilename@Base 1.8.0 + CPLGetHomeDir@Base 2.3.0 + CPLGetLastErrorMsg@Base 1.8.0 + CPLGetLastErrorNo@Base 1.8.0 + CPLGetLastErrorType@Base 1.8.0 + CPLGetNumCPUs@Base 1.10.1 + CPLGetPID@Base 1.8.0 + CPLGetPageSize@Base 1.11.0 + CPLGetPath@Base 1.8.0 + CPLGetPhysicalRAM@Base 2.0.1 + CPLGetSharedList@Base 1.8.0 + CPLGetSymbol@Base 1.8.0 + CPLGetTLS@Base 1.8.0 + CPLGetTLSEx@Base 2.1.0 + CPLGetThreadLocalConfigOption@Base 2.1.0 + CPLGetThreadLocalConfigOptions@Base 2.2.0 + CPLGetThreadingModel@Base 1.8.0 + CPLGetUsablePhysicalRAM@Base 2.0.1 + CPLGetValueType@Base 1.8.0 + CPLGetXMLNode@Base 1.8.0 + CPLGetXMLValue@Base 1.8.0 + CPLHTTPCleanup@Base 1.8.0 + CPLHTTPDestroyMultiResult@Base 2.3.0 + CPLHTTPDestroyResult@Base 1.8.0 + CPLHTTPEnabled@Base 1.8.0 + CPLHTTPFetch@Base 1.8.0 + CPLHTTPFetchEx@Base 2.3.0 + CPLHTTPMultiFetch@Base 2.3.0 + CPLHTTPParseMultipartMime@Base 1.8.0 + CPLHashSetClear@Base 2.1.0 + CPLHashSetDestroy@Base 1.8.0 + CPLHashSetEqualPointer@Base 1.8.0 + CPLHashSetEqualStr@Base 1.8.0 + CPLHashSetForeach@Base 1.8.0 + CPLHashSetHashPointer@Base 1.8.0 + CPLHashSetHashStr@Base 1.8.0 + CPLHashSetInsert@Base 1.8.0 + CPLHashSetLookup@Base 1.8.0 + CPLHashSetNew@Base 1.8.0 + CPLHashSetRemove@Base 1.8.0 + CPLHashSetRemoveDeferRehash@Base 2.1.0 + CPLHashSetSize@Base 1.8.0 + CPLHexToBinary@Base 1.8.0 + CPLIsFilenameRelative@Base 1.8.0 + CPLIsPowerOfTwo@Base 2.3.0 + CPLIsUTF8@Base 1.8.0 + CPLIsVirtualMemFileMapAvailable@Base 1.11.0 + CPLJoinThread@Base 1.10.1 + CPLListAppend@Base 1.8.0 + CPLListCount@Base 1.8.0 + CPLListDestroy@Base 1.8.0 + CPLListGet@Base 1.8.0 + CPLListGetData@Base 1.8.0 + CPLListGetLast@Base 1.8.0 + CPLListGetNext@Base 1.8.0 + CPLListInsert@Base 1.8.0 + CPLListRemove@Base 1.8.0 + CPLLockFile@Base 1.8.0 + CPLLockSetDebugPerf@Base 2.0.1 + CPLLoggingErrorHandler@Base 1.8.0 + CPLMD5String@Base 2.3.0 + CPLMalloc@Base 1.8.0 + CPLMoveFile@Base 1.8.0 + CPLOpenShared@Base 1.8.0 + CPLPackedDMSToDec@Base 1.8.0 + CPLParseNameValue@Base 1.8.0 + CPLParseXMLFile@Base 1.8.0 + CPLParseXMLString@Base 1.8.0 + CPLPipeRead@Base 1.10.1 + CPLPipeWrite@Base 1.10.1 + CPLPopErrorHandler@Base 1.8.0 + CPLPopFileFinder@Base 1.8.0 + CPLPopFinderLocation@Base 1.8.0 + CPLPrintDouble@Base 1.8.0 + CPLPrintInt32@Base 1.8.0 + CPLPrintPointer@Base 1.8.0 + CPLPrintString@Base 1.8.0 + CPLPrintStringFill@Base 1.8.0 + CPLPrintTime@Base 1.8.0 + CPLPrintUIntBig@Base 1.8.0 + CPLProjectRelativeFilename@Base 1.8.0 + CPLPushErrorHandler@Base 1.8.0 + CPLPushErrorHandlerEx@Base 1.9.0 + CPLPushFileFinder@Base 1.8.0 + CPLPushFinderLocation@Base 1.8.0 + CPLQuadTreeCreate@Base 1.8.0 + CPLQuadTreeDestroy@Base 1.8.0 + CPLQuadTreeDump@Base 1.8.0 + CPLQuadTreeForeach@Base 1.8.0 + CPLQuadTreeGetAdvisedMaxDepth@Base 1.8.0 + CPLQuadTreeGetStats@Base 1.8.0 + CPLQuadTreeInsert@Base 1.8.0 + CPLQuadTreeInsertWithBounds@Base 1.11.0 + CPLQuadTreeSearch@Base 1.8.0 + CPLQuadTreeSetBucketCapacity@Base 1.8.0 + CPLQuadTreeSetMaxDepth@Base 1.8.0 + CPLQuietErrorHandler@Base 1.8.0 + CPLReadDir@Base 1.8.0 + CPLReadLine2L@Base 1.8.0 + CPLReadLine3L@Base 2.3.0 + CPLReadLine@Base 1.8.0 + CPLReadLineL@Base 1.8.0 + CPLRealloc@Base 1.8.0 + CPLRecode@Base 1.8.0 + CPLRecodeFromWChar@Base 1.8.0 + CPLRecodeToWChar@Base 1.8.0 + CPLReleaseLock@Base 2.0.1 + CPLReleaseMutex@Base 1.8.0 + CPLRemoveXMLChild@Base 1.8.0 + CPLResetExtension@Base 1.8.0 + CPLSPrintf@Base 1.8.0 + CPLScanDouble@Base 1.8.0 + CPLScanLong@Base 1.8.0 + CPLScanPointer@Base 1.8.0 + CPLScanString@Base 1.8.0 + CPLScanUIntBig@Base 1.8.0 + CPLScanULong@Base 1.8.0 + CPLSearchXMLNode@Base 1.8.0 + CPLSerializeXMLTree@Base 1.8.0 + CPLSerializeXMLTreeToFile@Base 1.8.0 + CPLSetConfigOption@Base 1.8.0 + CPLSetConfigOptions@Base 2.2.0 + CPLSetCurrentErrorHandlerCatchDebug@Base 2.1.0 + CPLSetErrorHandler@Base 1.8.0 + CPLSetErrorHandlerEx@Base 1.9.0 + CPLSetTLS@Base 1.8.0 + CPLSetTLSWithFreeFunc@Base 1.8.0 + CPLSetTLSWithFreeFuncEx@Base 2.1.0 + CPLSetThreadLocalConfigOption@Base 1.8.0 + CPLSetThreadLocalConfigOptions@Base 2.2.0 + CPLSetXMLValue@Base 1.8.0 + CPLSleep@Base 1.8.0 + CPLSpawn@Base 1.10.1 + CPLSpawnAsync@Base 1.10.1 + CPLSpawnAsyncCloseErrorFileHandle@Base 1.10.1 + CPLSpawnAsyncCloseInputFileHandle@Base 1.10.1 + CPLSpawnAsyncCloseOutputFileHandle@Base 1.10.1 + CPLSpawnAsyncFinish@Base 1.10.1 + CPLSpawnAsyncGetChildProcessId@Base 1.10.1 + CPLSpawnAsyncGetErrorFileHandle@Base 1.10.1 + CPLSpawnAsyncGetInputFileHandle@Base 1.10.1 + CPLSpawnAsyncGetOutputFileHandle@Base 1.10.1 + CPLStat@Base 1.8.0 + CPLStrdup@Base 1.8.0 + CPLStringToComplex@Base 1.8.0 + CPLStripXMLNamespace@Base 1.8.0 + CPLStrlcat@Base 1.8.0 + CPLStrlcpy@Base 1.8.0 + CPLStrlenUTF8@Base 1.11.0 + CPLStrlwr@Base 1.8.0 + CPLStrnlen@Base 1.8.0 + CPLStrtod@Base 1.8.0 + CPLStrtodDelim@Base 1.8.0 + CPLStrtof@Base 1.8.0 + CPLStrtofDelim@Base 1.8.0 + CPLSymlink@Base 2.1.0 + CPLTestBool@Base 2.1.0 + CPLTestBoolean@Base 2.1.0 + CPLUnescapeString@Base 1.8.0 + CPLUnlinkTree@Base 1.8.0 + CPLUnlockFile@Base 1.8.0 + CPLVASPrintf@Base 1.8.0 + CPLValidateXML@Base 1.10.1 + CPLVerifyConfiguration@Base 1.8.0 + CPLVirtualMemDeclareThread@Base 1.11.0 + CPLVirtualMemDerivedNew@Base 1.11.0 + CPLVirtualMemFileMapNew@Base 1.11.0 + CPLVirtualMemFree@Base 1.11.0 + CPLVirtualMemGetAccessMode@Base 1.11.0 + CPLVirtualMemGetAddr@Base 1.11.0 + CPLVirtualMemGetPageSize@Base 1.11.0 + CPLVirtualMemGetSize@Base 1.11.0 + CPLVirtualMemIsAccessThreadSafe@Base 1.11.0 + CPLVirtualMemIsFileMapping@Base 1.11.0 + CPLVirtualMemManagerTerminate@Base 1.11.0 + CPLVirtualMemNew@Base 1.11.0 + CPLVirtualMemPin@Base 1.11.0 + CPLVirtualMemUnDeclareThread@Base 1.11.0 + CPLWriteFileInZip@Base 1.8.0 + CPLZLibDeflate@Base 1.10.1 + CPLZLibInflate@Base 1.10.1 + CPL_HMAC_SHA256@Base 2.1.0 + CPL_SHA256@Base 2.1.0 + CPL_SHA256Final@Base 2.1.0 + CPL_SHA256Init@Base 2.1.0 + CPL_SHA256Update@Base 2.1.0 + CPLprintf@Base 2.0.1 + CPLsnprintf@Base 2.0.1 + CPLsprintf@Base 2.0.1 + CPLsscanf@Base 2.0.1 + CPLvsnprintf@Base 2.0.1 + CSLAddNameValue@Base 1.8.0 + CSLAddString@Base 1.8.0 + CSLAddStringMayFail@Base 2.1.0 + CSLAppendPrintf@Base 1.8.0 + CSLCount@Base 1.8.0 + CSLDestroy@Base 1.8.0 + CSLDuplicate@Base 1.8.0 + CSLFetchBoolean@Base 1.8.0 + CSLFetchNameValue@Base 1.8.0 + CSLFetchNameValueDef@Base 1.8.0 + CSLFetchNameValueMultiple@Base 1.8.0 + CSLFindName@Base 1.8.0 + CSLFindString@Base 1.8.0 + CSLFindStringCaseSensitive@Base 2.0.1 + CSLGetField@Base 1.8.0 + CSLInsertString@Base 1.8.0 + CSLInsertStrings@Base 1.8.0 + CSLLoad2@Base 1.8.0 + CSLLoad@Base 1.8.0 + CSLMerge@Base 1.8.0 + CSLParseCommandLine@Base 2.1.0 + CSLPartialFindString@Base 1.8.0 + CSLPrint@Base 1.8.0 + CSLRemoveStrings@Base 1.8.0 + CSLSave@Base 1.8.0 + CSLSetNameValue@Base 1.8.0 + CSLSetNameValueSeparator@Base 1.8.0 + CSLTestBoolean@Base 1.8.0 + CSLTokenizeString2@Base 1.8.0 + CSLTokenizeString@Base 1.8.0 + CSLTokenizeStringComplex@Base 1.8.0 + CSVDeaccess@Base 1.8.0 + CSVDetectSeperator@Base 1.8.0 + CSVFilename@Base 1.8.0 + CSVGetField@Base 1.8.0 + CSVGetFieldId@Base 1.8.0 + CSVGetFieldIdL@Base 2.1.0 + CSVGetFileFieldId@Base 1.8.0 + CSVGetNextLine@Base 1.8.0 + CSVReadParseLine2@Base 1.8.0 + CSVReadParseLine2L@Base 2.1.0 + CSVReadParseLine@Base 1.8.0 + CSVReadParseLineL@Base 2.1.0 + CSVScanFile@Base 1.8.0 + CSVScanFileByName@Base 1.8.0 + CSVScanLines@Base 1.8.0 + CSVScanLinesL@Base 2.1.0 + DGNAddMSLink@Base 1.8.0 + DGNAddRawAttrLink@Base 1.8.0 + DGNAddShapeFillInfo@Base 1.8.0 + DGNCloneElement@Base 1.8.0 + DGNClose@Base 1.8.0 + DGNCreate@Base 1.8.0 + DGNCreateArcElem2D@Base 1.8.0 + DGNCreateArcElem@Base 1.8.0 + DGNCreateCellHeaderElem@Base 1.8.0 + DGNCreateCellHeaderFromGroup@Base 1.8.0 + DGNCreateColorTableElem@Base 1.8.0 + DGNCreateComplexHeaderElem@Base 1.8.0 + DGNCreateComplexHeaderFromGroup@Base 1.8.0 + DGNCreateConeElem@Base 1.8.0 + DGNCreateMultiPointElem@Base 1.8.0 + DGNCreateSolidHeaderElem@Base 1.8.0 + DGNCreateSolidHeaderFromGroup@Base 1.8.0 + DGNCreateTextElem@Base 1.8.0 + DGNDumpElement@Base 1.8.0 + DGNElemTypeHasDispHdr@Base 1.8.0 + DGNFreeElement@Base 1.8.0 + DGNGetAssocID@Base 1.8.0 + DGNGetAttrLinkSize@Base 1.8.0 + DGNGetDimension@Base 1.8.0 + DGNGetElementExtents@Base 1.8.0 + DGNGetElementIndex@Base 1.8.0 + DGNGetExtents@Base 1.8.0 + DGNGetLinkage@Base 1.8.0 + DGNGetShapeFillInfo@Base 1.8.0 + DGNGotoElement@Base 1.8.0 + DGNLoadTCB@Base 1.8.0 + DGNLookupColor@Base 1.8.0 + DGNOpen@Base 1.8.0 + DGNQuaternionToMatrix@Base 1.8.0 + DGNReadElement@Base 1.8.0 + DGNResizeElement@Base 1.8.0 + DGNRewind@Base 1.8.0 + DGNRotationToQuaternion@Base 1.8.0 + DGNSetOptions@Base 1.8.0 + DGNSetSpatialFilter@Base 1.8.0 + DGNStrokeArc@Base 1.8.0 + DGNStrokeCurve@Base 1.8.0 + DGNTestOpen@Base 1.8.0 + DGNTypeToName@Base 1.8.0 + DGNUpdateElemCore@Base 1.8.0 + DGNUpdateElemCoreExtended@Base 1.8.0 + DGNWriteElement@Base 1.8.0 + EarlySetConfigOptions@Base 2.1.0 + GDALARGetNextUpdatedRegion@Base 1.8.0 + GDALARLockBuffer@Base 1.8.0 + GDALARUnlockBuffer@Base 1.8.0 + GDALAddBand@Base 1.8.0 + GDALAddDerivedBandPixelFunc@Base 1.8.0 + GDALAdjustValueToDataType@Base 2.1.0 + GDALAllRegister@Base 1.8.0 + GDALApplyGeoTransform@Base 1.8.0 + GDALApplyVerticalShiftGrid@Base 2.2.0 + GDALApproxTransform@Base 1.8.0 + GDALApproxTransformerOwnsSubtransformer@Base 1.8.0 + GDALAutoCreateWarpedVRT@Base 1.8.0 + GDALBandGetBestOverviewLevel2@Base 2.0.1 + GDALBandGetBestOverviewLevel@Base 1.8.0 + GDALBeginAsyncReader@Base 1.8.0 + GDALBuildOverviews@Base 1.8.0 + GDALBuildVRT@Base 2.1.0 + GDALBuildVRTOptionsFree@Base 2.1.0 + GDALBuildVRTOptionsNew@Base 2.1.0 + GDALBuildVRTOptionsSetProgress@Base 2.1.0 + GDALCheckBandCount@Base 1.8.0 + GDALCheckDatasetDimensions@Base 1.8.0 + GDALCheckVersion@Base 1.8.0 + GDALChecksumImage@Base 1.8.0 + GDALChunkAndWarpImage@Base 1.8.0 + GDALChunkAndWarpMulti@Base 1.8.0 + GDALCloneColorTable@Base 1.8.0 + GDALClonePansharpenOptions@Base 2.1.0 + GDALCloneWarpOptions@Base 1.8.0 + GDALClose@Base 1.8.0 + GDALComposeGeoTransforms@Base 1.11.0 + GDALComputeBandStats@Base 1.8.0 + GDALComputeMatchingPoints@Base 1.10.1 + GDALComputeMedianCutPCT@Base 1.8.0 + GDALComputeOvFactor@Base 2.0.1 + GDALComputeProximity@Base 1.8.0 + GDALComputeRasterMinMax@Base 1.8.0 + GDALComputeRasterStatistics@Base 1.8.0 + GDALContourGenerate@Base 1.8.0 + GDALContourGenerateEx@Base 2.4.0 + GDALCopyBits@Base 1.8.0 + GDALCopyDatasetFiles@Base 1.8.0 + GDALCopyRasterIOExtraArg@Base 2.0.1 + GDALCopyWords@Base 1.8.0 + GDALCreate@Base 1.8.0 + GDALCreateAndReprojectImage@Base 1.8.0 + GDALCreateApproxTransformer@Base 1.8.0 + GDALCreateColorRamp@Base 1.8.0 + GDALCreateColorTable@Base 1.8.0 + GDALCreateCopy@Base 1.8.0 + GDALCreateDatasetMaskBand@Base 1.8.0 + GDALCreateDriver@Base 2.2.2 + GDALCreateGCPRefineTransformer@Base 1.9.0 + GDALCreateGCPTransformer@Base 1.8.0 + GDALCreateGenImgProjTransformer2@Base 1.8.0 + GDALCreateGenImgProjTransformer3@Base 1.8.0 + GDALCreateGenImgProjTransformer@Base 1.8.0 + GDALCreateGeoLocTransformer@Base 1.8.0 + GDALCreateMaskBand@Base 1.8.0 + GDALCreatePansharpenOperation@Base 2.1.0 + GDALCreatePansharpenOptions@Base 2.1.0 + GDALCreatePansharpenedVRT@Base 2.1.0 + GDALCreateRPCTransformer@Base 1.8.0 + GDALCreateRasterAttributeTable@Base 1.8.0 + GDALCreateReprojectionTransformer@Base 1.8.0 + GDALCreateScaledProgress@Base 1.8.0 + GDALCreateTPSTransformer@Base 1.8.0 + GDALCreateWarpOperation@Base 1.8.0 + GDALCreateWarpOptions@Base 1.8.0 + GDALCreateWarpedVRT@Base 1.8.0 + GDALDEMProcessing@Base 2.1.0 + GDALDEMProcessingOptionsFree@Base 2.1.0 + GDALDEMProcessingOptionsNew@Base 2.1.0 + GDALDEMProcessingOptionsSetProgress@Base 2.1.0 + GDALDataTypeIsComplex@Base 1.8.0 + GDALDataTypeIsConversionLossy@Base 2.3.0 + GDALDataTypeIsFloating@Base 2.3.0 + GDALDataTypeIsInteger@Base 2.3.0 + GDALDataTypeIsSigned@Base 2.3.0 + GDALDataTypeUnion@Base 1.8.0 + GDALDataTypeUnionWithValue@Base 2.3.0 + GDALDatasetAdviseRead@Base 1.8.0 + GDALDatasetCommitTransaction@Base 2.0.1 + GDALDatasetCopyLayer@Base 2.0.1 + GDALDatasetCopyWholeRaster@Base 1.8.0 + GDALDatasetCreateLayer@Base 2.0.1 + GDALDatasetDeleteLayer@Base 2.0.1 + GDALDatasetExecuteSQL@Base 2.0.1 + GDALDatasetGetLayer@Base 2.0.1 + GDALDatasetGetLayerByName@Base 2.0.1 + GDALDatasetGetLayerCount@Base 2.0.1 + GDALDatasetGetNextFeature@Base 2.2.0 + GDALDatasetGetStyleTable@Base 2.0.1 + GDALDatasetGetTiledVirtualMem@Base 1.11.0 + GDALDatasetGetVirtualMem@Base 1.11.0 + GDALDatasetRasterIO@Base 1.8.0 + GDALDatasetRasterIOEx@Base 2.0.1 + GDALDatasetReleaseResultSet@Base 2.0.1 + GDALDatasetResetReading@Base 2.2.0 + GDALDatasetRollbackTransaction@Base 2.0.1 + GDALDatasetSetStyleTable@Base 2.0.1 + GDALDatasetSetStyleTableDirectly@Base 2.0.1 + GDALDatasetStartTransaction@Base 2.0.1 + GDALDatasetTestCapability@Base 2.0.1 + GDALDecToDMS@Base 1.8.0 + GDALDecToPackedDMS@Base 1.8.0 + GDALDeinitGCPs@Base 1.8.0 + GDALDeleteDataset@Base 1.8.0 + GDALDeleteRasterNoDataValue@Base 2.1.0 + GDALDereferenceDataset@Base 1.8.0 + GDALDeregisterDriver@Base 1.8.0 + GDALDeserializeTransformer@Base 1.8.0 + GDALDeserializeWarpOptions@Base 1.8.0 + GDALDestroy@Base 2.0.1 + GDALDestroyApproxTransformer@Base 1.8.0 + GDALDestroyColorTable@Base 1.8.0 + GDALDestroyDriver@Base 1.8.0 + GDALDestroyDriverManager@Base 1.8.0 + GDALDestroyGCPTransformer@Base 1.8.0 + GDALDestroyGenImgProjTransformer@Base 1.8.0 + GDALDestroyGeoLocTransformer@Base 1.8.0 + GDALDestroyPansharpenOperation@Base 2.1.0 + GDALDestroyPansharpenOptions@Base 2.1.0 + GDALDestroyRPCTransformer@Base 1.8.0 + GDALDestroyRasterAttributeTable@Base 1.8.0 + GDALDestroyReprojectionTransformer@Base 1.8.0 + GDALDestroyScaledProgress@Base 1.8.0 + GDALDestroyTPSTransformer@Base 1.8.0 + GDALDestroyTransformer@Base 1.8.0 + GDALDestroyWarpOperation@Base 1.8.0 + GDALDestroyWarpOptions@Base 1.8.0 + GDALDitherRGB2PCT@Base 1.8.0 + GDALDummyProgress@Base 1.8.0 + GDALDumpOpenDatasets@Base 1.8.0 + GDALDuplicateGCPs@Base 1.8.0 + GDALEndAsyncReader@Base 1.8.0 + GDALExtractRPCInfo@Base 1.8.0 + GDALFPolygonize@Base 1.9.0 + GDALFillNodata@Base 1.8.0 + GDALFillRaster@Base 1.8.0 + GDALFindAssociatedAuxFile@Base 1.8.0 + GDALFindDataType@Base 2.3.0 + GDALFindDataTypeForValue@Base 2.3.0 + GDALFlushCache@Base 1.8.0 + GDALFlushCacheBlock@Base 1.8.0 + GDALFlushRasterCache@Base 1.8.0 + GDALGCPTransform@Base 1.8.0 + GDALGCPsToGeoTransform@Base 1.8.0 + GDALGenImgProjTransform@Base 1.8.0 + GDALGeneralCmdLineProcessor@Base 1.8.0 + GDALGeoLocTransform@Base 1.8.0 + GDALGetAccess@Base 1.8.0 + GDALGetActualBlockSize@Base 2.2.0 + GDALGetAsyncStatusTypeByName@Base 1.8.0 + GDALGetAsyncStatusTypeName@Base 1.8.0 + GDALGetBandDataset@Base 1.8.0 + GDALGetBandNumber@Base 1.8.0 + GDALGetBlockSize@Base 1.8.0 + GDALGetCacheMax64@Base 1.8.0 + GDALGetCacheMax@Base 1.8.0 + GDALGetCacheUsed64@Base 1.8.0 + GDALGetCacheUsed@Base 1.8.0 + GDALGetColorEntry@Base 1.8.0 + GDALGetColorEntryAsRGB@Base 1.8.0 + GDALGetColorEntryCount@Base 1.8.0 + GDALGetColorInterpretationByName@Base 1.8.0 + GDALGetColorInterpretationName@Base 1.8.0 + GDALGetDataCoverageStatus@Base 2.2.0 + GDALGetDataTypeByName@Base 1.8.0 + GDALGetDataTypeName@Base 1.8.0 + GDALGetDataTypeSize@Base 1.8.0 + GDALGetDataTypeSizeBits@Base 2.1.0 + GDALGetDataTypeSizeBytes@Base 2.1.0 + GDALGetDatasetDriver@Base 1.8.0 + GDALGetDefaultHistogram@Base 1.8.0 + GDALGetDefaultHistogramEx@Base 2.0.1 + GDALGetDefaultRAT@Base 1.8.0 + GDALGetDerivedDatasetDescriptions@Base 2.2.0 + GDALGetDescription@Base 1.8.0 + GDALGetDriver@Base 1.8.0 + GDALGetDriverByName@Base 1.8.0 + GDALGetDriverCount@Base 1.8.0 + GDALGetDriverCreationOptionList@Base 1.8.0 + GDALGetDriverHelpTopic@Base 1.8.0 + GDALGetDriverLongName@Base 1.8.0 + GDALGetDriverShortName@Base 1.8.0 + GDALGetFileList@Base 1.8.0 + GDALGetGCPCount@Base 1.8.0 + GDALGetGCPProjection@Base 1.8.0 + GDALGetGCPs@Base 1.8.0 + GDALGetGeoTransform@Base 1.8.0 + GDALGetInternalHandle@Base 1.8.0 + GDALGetJPEG2000Structure@Base 2.0.1 + GDALGetMaskBand@Base 1.8.0 + GDALGetMaskFlags@Base 1.8.0 + GDALGetMetadata@Base 1.8.0 + GDALGetMetadataDomainList@Base 1.11.0 + GDALGetMetadataItem@Base 1.8.0 + GDALGetNonComplexDataType@Base 2.3.0 + GDALGetOpenDatasets@Base 1.8.0 + GDALGetOverview@Base 1.8.0 + GDALGetOverviewCount@Base 1.8.0 + GDALGetPaletteInterpretation@Base 1.8.0 + GDALGetPaletteInterpretationName@Base 1.8.0 + GDALGetProjectionRef@Base 1.8.0 + GDALGetRandomRasterSample@Base 1.8.0 + GDALGetRasterAccess@Base 1.8.0 + GDALGetRasterBand@Base 1.8.0 + GDALGetRasterBandXSize@Base 1.8.0 + GDALGetRasterBandYSize@Base 1.8.0 + GDALGetRasterCategoryNames@Base 1.8.0 + GDALGetRasterColorInterpretation@Base 1.8.0 + GDALGetRasterColorTable@Base 1.8.0 + GDALGetRasterCount@Base 1.8.0 + GDALGetRasterDataType@Base 1.8.0 + GDALGetRasterHistogram@Base 1.8.0 + GDALGetRasterHistogramEx@Base 2.0.1 + GDALGetRasterMaximum@Base 1.8.0 + GDALGetRasterMinimum@Base 1.8.0 + GDALGetRasterNoDataValue@Base 1.8.0 + GDALGetRasterOffset@Base 1.8.0 + GDALGetRasterSampleOverview@Base 1.8.0 + GDALGetRasterSampleOverviewEx@Base 2.0.1 + GDALGetRasterScale@Base 1.8.0 + GDALGetRasterStatistics@Base 1.8.0 + GDALGetRasterUnitType@Base 1.8.0 + GDALGetRasterXSize@Base 1.8.0 + GDALGetRasterYSize@Base 1.8.0 + GDALGetVirtualMemAuto@Base 1.11.0 + GDALGrid@Base 2.1.0 + GDALGridContextCreate@Base 2.1.0 + GDALGridContextFree@Base 2.1.0 + GDALGridContextProcess@Base 2.1.0 + GDALGridCreate@Base 1.8.0 + GDALGridOptionsFree@Base 2.1.0 + GDALGridOptionsNew@Base 2.1.0 + GDALGridOptionsSetProgress@Base 2.1.0 + GDALHasArbitraryOverviews@Base 1.8.0 + GDALHasTriangulation@Base 2.1.0 + GDALIdentifyDriver@Base 1.8.0 + GDALIdentifyDriverEx@Base 2.2.0 + GDALInfo@Base 2.1.0 + GDALInfoOptionsFree@Base 2.1.0 + GDALInfoOptionsNew@Base 2.1.0 + GDALInitGCPs@Base 1.8.0 + GDALInitializeWarpedVRT@Base 1.8.0 + GDALInvGeoTransform@Base 1.8.0 + GDALIsInGlobalDestructor@Base 1.10.1 + GDALLoadOziMapFile@Base 1.8.0 + GDALLoadTabFile@Base 1.8.0 + GDALLoadWorldFile@Base 1.8.0 + GDALNearblack@Base 2.1.0 + GDALNearblackOptionsFree@Base 2.1.0 + GDALNearblackOptionsNew@Base 2.1.0 + GDALNearblackOptionsSetProgress@Base 2.1.0 + GDALOpen@Base 1.8.0 + GDALOpenEx@Base 2.0.1 + GDALOpenShared@Base 1.8.0 + GDALOpenVerticalShiftGrid@Base 2.2.0 + GDALOvLevelAdjust2@Base 2.0.1 + GDALOvLevelAdjust@Base 1.8.0 + GDALOverviewMagnitudeCorrection@Base 1.8.0 + GDALPackedDMSToDec@Base 1.8.0 + GDALPansharpenProcessRegion@Base 2.1.0 + GDALPolygonize@Base 1.8.0 + GDALProxyPoolDatasetAddSrcBandDescription@Base 1.8.0 + GDALProxyPoolDatasetCreate@Base 1.8.0 + GDALProxyPoolDatasetDelete@Base 1.8.0 + GDALRATChangesAreWrittenToFile@Base 1.11.0 + GDALRATClone@Base 1.8.0 + GDALRATCreateColumn@Base 1.8.0 + GDALRATDumpReadable@Base 1.8.0 + GDALRATGetColOfUsage@Base 1.8.0 + GDALRATGetColumnCount@Base 1.8.0 + GDALRATGetLinearBinning@Base 1.8.0 + GDALRATGetNameOfCol@Base 1.8.0 + GDALRATGetRowCount@Base 1.8.0 + GDALRATGetRowOfValue@Base 1.8.0 + GDALRATGetTableType@Base 2.4.0 + GDALRATGetTypeOfCol@Base 1.8.0 + GDALRATGetUsageOfCol@Base 1.8.0 + GDALRATGetValueAsDouble@Base 1.8.0 + GDALRATGetValueAsInt@Base 1.8.0 + GDALRATGetValueAsString@Base 1.8.0 + GDALRATInitializeFromColorTable@Base 1.8.0 + GDALRATRemoveStatistics@Base 2.4.0 + GDALRATSerializeJSON@Base 2.0.1 + GDALRATSetLinearBinning@Base 1.8.0 + GDALRATSetRowCount@Base 1.8.0 + GDALRATSetTableType@Base 2.4.0 + GDALRATSetValueAsDouble@Base 1.8.0 + GDALRATSetValueAsInt@Base 1.8.0 + GDALRATSetValueAsString@Base 1.8.0 + GDALRATTranslateToColorTable@Base 1.8.0 + GDALRATValuesIOAsDouble@Base 1.11.0 + GDALRATValuesIOAsInteger@Base 1.11.0 + GDALRATValuesIOAsString@Base 1.11.0 + GDALRPCTransform@Base 1.8.0 + GDALRasterAdviseRead@Base 1.8.0 + GDALRasterBandCopyWholeRaster@Base 1.8.0 + GDALRasterBandGetTiledVirtualMem@Base 1.11.0 + GDALRasterBandGetVirtualMem@Base 1.11.0 + GDALRasterIO@Base 1.8.0 + GDALRasterIOEx@Base 2.0.1 + GDALRasterize@Base 2.1.0 + GDALRasterizeGeometries@Base 1.8.0 + GDALRasterizeLayers@Base 1.8.0 + GDALRasterizeLayersBuf@Base 1.8.0 + GDALRasterizeOptionsFree@Base 2.1.0 + GDALRasterizeOptionsNew@Base 2.1.0 + GDALRasterizeOptionsSetProgress@Base 2.1.0 + GDALReadBlock@Base 1.8.0 + GDALReadOziMapFile@Base 1.8.0 + GDALReadTabFile@Base 1.8.0 + GDALReadWorldFile2@Base 1.9.0 + GDALReadWorldFile@Base 1.8.0 + GDALReferenceDataset@Base 1.8.0 + GDALRegenerateOverviews@Base 1.8.0 + GDALRegisterDriver@Base 1.8.0 + GDALRegister_AAIGrid@Base 1.8.0 + GDALRegister_ACE2@Base 1.9.0 + GDALRegister_ADRG@Base 1.8.0 + GDALRegister_AIGrid@Base 1.8.0 + GDALRegister_ARG@Base 1.10.1 + GDALRegister_AirSAR@Base 1.8.0 + GDALRegister_BAG@Base 1.8.0 + GDALRegister_BIGGIF@Base 1.8.0 + GDALRegister_BLX@Base 1.8.0 + GDALRegister_BMP@Base 1.8.0 + GDALRegister_BSB@Base 1.8.0 + GDALRegister_BT@Base 1.8.0 + GDALRegister_BYN@Base 2.4.0 + GDALRegister_CALS@Base 2.1.0 + GDALRegister_CEOS@Base 1.8.0 + GDALRegister_COASP@Base 1.8.0 + GDALRegister_COSAR@Base 1.8.0 + GDALRegister_CPG@Base 1.8.0 + GDALRegister_CTG@Base 1.9.0 + GDALRegister_CTable2@Base 1.10.1 + GDALRegister_DIMAP@Base 1.8.0 + GDALRegister_DIPEx@Base 1.8.0 + GDALRegister_DODS@Base 1.8.0 + GDALRegister_DOQ1@Base 1.8.0 + GDALRegister_DOQ2@Base 1.8.0 + GDALRegister_DTED@Base 1.8.0 + GDALRegister_Derived@Base 2.2.0 + GDALRegister_E00GRID@Base 1.9.0 + GDALRegister_ECRGTOC@Base 1.9.0 + GDALRegister_EEDA@Base 2.4.0 + GDALRegister_EEDAI@Base 2.4.0 + GDALRegister_EHdr@Base 1.8.0 + GDALRegister_EIR@Base 1.8.0 + GDALRegister_ELAS@Base 1.8.0 + GDALRegister_ENVI@Base 1.8.0 + GDALRegister_EPSILON@Base 1.8.0 + GDALRegister_ERS@Base 1.8.0 + GDALRegister_Envisat@Base 1.8.0 + GDALRegister_FAST@Base 1.8.0 + GDALRegister_FIT@Base 1.8.0 + GDALRegister_FujiBAS@Base 1.8.0 + GDALRegister_GFF@Base 1.8.0 + GDALRegister_GIF@Base 1.8.0 + GDALRegister_GMT@Base 1.8.0 + GDALRegister_GRASSASCIIGrid@Base 1.9.0 + GDALRegister_GRIB@Base 1.8.0 + GDALRegister_GS7BG@Base 1.8.0 + GDALRegister_GSAG@Base 1.8.0 + GDALRegister_GSBG@Base 1.8.0 + GDALRegister_GSC@Base 1.8.0 + GDALRegister_GTX@Base 1.8.0 + GDALRegister_GTiff@Base 1.8.0 + GDALRegister_GXF@Base 1.8.0 + GDALRegister_GenBin@Base 1.8.0 + GDALRegister_HDF4@Base 1.8.0 + GDALRegister_HDF4Image@Base 1.8.0 + GDALRegister_HDF5@Base 1.8.0 + GDALRegister_HDF5Image@Base 1.8.0 + GDALRegister_HF2@Base 1.8.0 + GDALRegister_HFA@Base 1.8.0 + GDALRegister_HKV@Base 1.8.0 + GDALRegister_HTTP@Base 1.8.0 + GDALRegister_IDA@Base 1.8.0 + GDALRegister_IDRISI@Base 1.8.0 + GDALRegister_IGNFHeightASCIIGrid@Base 2.4.0 + GDALRegister_ILWIS@Base 1.8.0 + GDALRegister_INGR@Base 1.8.0 + GDALRegister_IRIS@Base 1.10.1 + GDALRegister_ISCE@Base 2.1.0 + GDALRegister_ISIS2@Base 1.8.0 + GDALRegister_ISIS3@Base 1.8.0 + GDALRegister_JDEM@Base 1.8.0 + GDALRegister_JP2OpenJPEG@Base 1.11.2 + GDALRegister_JPEG@Base 1.8.0 + GDALRegister_JPEGLS@Base 2.3.0 + GDALRegister_KMLSUPEROVERLAY@Base 1.8.0 + GDALRegister_KRO@Base 1.11.0 + GDALRegister_L1B@Base 1.8.0 + GDALRegister_LAN@Base 1.8.0 + GDALRegister_LCP@Base 1.8.0 + GDALRegister_LOSLAS@Base 1.8.0 + GDALRegister_Leveller@Base 1.8.0 + GDALRegister_MAP@Base 1.10.1 + GDALRegister_MBTiles@Base 1.10.1 + GDALRegister_MEM@Base 1.8.0 + GDALRegister_MFF@Base 1.8.0 + GDALRegister_MSGN@Base 1.8.0 + GDALRegister_NDF@Base 1.8.0 + GDALRegister_NGSGEOID@Base 1.9.0 + GDALRegister_NITF@Base 1.8.0 + GDALRegister_NTv1@Base 2.4.0 + GDALRegister_NTv2@Base 1.8.0 + GDALRegister_NWT_GRC@Base 1.8.0 + GDALRegister_NWT_GRD@Base 1.8.0 + GDALRegister_OZI@Base 1.8.0 + GDALRegister_PALSARJaxa@Base 1.8.0 + GDALRegister_PAux@Base 1.8.0 + GDALRegister_PCIDSK@Base 1.8.0 + GDALRegister_PCRaster@Base 1.8.0 + GDALRegister_PDF@Base 1.9.0 + GDALRegister_PDS4@Base 2.3.0 + GDALRegister_PDS@Base 1.8.0 + GDALRegister_PLMOSAIC@Base 2.0.1 + GDALRegister_PNG@Base 1.8.0 + GDALRegister_PNM@Base 1.8.0 + GDALRegister_PRF@Base 2.2.0 + GDALRegister_PostGISRaster@Base 1.8.0 + GDALRegister_R@Base 1.8.0 + GDALRegister_RDA@Base 2.3.0 + GDALRegister_RIK@Base 1.8.0 + GDALRegister_RMF@Base 1.8.0 + GDALRegister_ROIPAC@Base 2.0.1 + GDALRegister_RPFTOC@Base 1.8.0 + GDALRegister_RRASTER@Base 2.2.0 + GDALRegister_RS2@Base 1.8.0 + GDALRegister_Rasterlite@Base 1.8.0 + GDALRegister_SAFE@Base 2.1.0 + GDALRegister_SAGA@Base 1.8.0 + GDALRegister_SAR_CEOS@Base 1.8.0 + GDALRegister_SDTS@Base 1.8.0 + GDALRegister_SENTINEL2@Base 2.1.0 + GDALRegister_SGI@Base 1.8.0 + GDALRegister_SIGDEM@Base 2.4.0 + GDALRegister_SNODAS@Base 1.9.0 + GDALRegister_SRP@Base 1.8.0 + GDALRegister_SRTMHGT@Base 1.8.0 + GDALRegister_TIL@Base 1.8.0 + GDALRegister_TSX@Base 1.8.0 + GDALRegister_Terragen@Base 1.8.0 + GDALRegister_USGSDEM@Base 1.8.0 + GDALRegister_VICAR@Base 2.0.1 + GDALRegister_VRT@Base 1.8.0 + GDALRegister_WCS@Base 1.8.0 + GDALRegister_WEBP@Base 1.10.1 + GDALRegister_WMS@Base 1.8.0 + GDALRegister_WMTS@Base 2.1.0 + GDALRegister_XPM@Base 1.8.0 + GDALRegister_XYZ@Base 1.8.0 + GDALRegister_ZMap@Base 1.9.0 + GDALRegister_mrf@Base 2.1.0 + GDALRegister_netCDF@Base 1.8.0 + GDALReleaseDataset@Base 2.2.0 + GDALRenameDataset@Base 1.8.0 + GDALReprojectImage@Base 1.8.0 + GDALReprojectionTransform@Base 1.8.0 + GDALScaledProgress@Base 1.8.0 + GDALSerializeTransformer@Base 1.8.0 + GDALSerializeWarpOptions@Base 1.8.0 + GDALServerLoop@Base 1.10.1 + GDALServerLoopInstanceCreateFromSocket@Base 2.1.0 + GDALServerLoopInstanceDestroy@Base 2.1.0 + GDALServerLoopInstanceRunIteration@Base 2.1.0 + GDALServerLoopSocket@Base 1.10.1 + GDALSetCacheMax64@Base 1.8.0 + GDALSetCacheMax@Base 1.8.0 + GDALSetColorEntry@Base 1.8.0 + GDALSetDefaultHistogram@Base 1.8.0 + GDALSetDefaultHistogramEx@Base 2.0.1 + GDALSetDefaultRAT@Base 1.8.0 + GDALSetDescription@Base 1.8.0 + GDALSetGCPs@Base 1.8.0 + GDALSetGenImgProjTransformerDstGeoTransform@Base 1.8.0 + GDALSetGeoTransform@Base 1.8.0 + GDALSetMetadata@Base 1.8.0 + GDALSetMetadataItem@Base 1.8.0 + GDALSetProjection@Base 1.8.0 + GDALSetRasterCategoryNames@Base 1.8.0 + GDALSetRasterColorInterpretation@Base 1.8.0 + GDALSetRasterColorTable@Base 1.8.0 + GDALSetRasterNoDataValue@Base 1.8.0 + GDALSetRasterOffset@Base 1.8.0 + GDALSetRasterScale@Base 1.8.0 + GDALSetRasterStatistics@Base 1.8.0 + GDALSetRasterUnitType@Base 1.8.0 + GDALSieveFilter@Base 1.8.0 + GDALSimpleImageWarp@Base 1.8.0 + GDALSuggestedWarpOutput2@Base 1.8.0 + GDALSuggestedWarpOutput@Base 1.8.0 + GDALSwapWords@Base 1.8.0 + GDALSwapWordsEx@Base 2.1.0 + GDALTPSTransform@Base 1.8.0 + GDALTermProgress@Base 1.8.0 + GDALTransformGeolocations@Base 1.10.1 + GDALTranslate@Base 2.1.0 + GDALTranslateOptionsFree@Base 2.1.0 + GDALTranslateOptionsNew@Base 2.1.0 + GDALTranslateOptionsSetProgress@Base 2.1.0 + GDALTriangulationComputeBarycentricCoefficients@Base 2.1.0 + GDALTriangulationComputeBarycentricCoordinates@Base 2.1.0 + GDALTriangulationCreateDelaunay@Base 2.1.0 + GDALTriangulationFindFacetBruteForce@Base 2.1.0 + GDALTriangulationFindFacetDirected@Base 2.1.0 + GDALTriangulationFree@Base 2.1.0 + GDALUseTransformer@Base 1.8.0 + GDALValidateCreationOptions@Base 1.8.0 + GDALVectorTranslate@Base 2.1.0 + GDALVectorTranslateOptionsFree@Base 2.1.0 + GDALVectorTranslateOptionsNew@Base 2.1.0 + GDALVectorTranslateOptionsSetProgress@Base 2.1.0 + GDALVersionInfo@Base 1.8.0 + GDALWarp@Base 2.1.0 + GDALWarpAppOptionsFree@Base 2.1.0 + GDALWarpAppOptionsNew@Base 2.1.0 + GDALWarpAppOptionsSetProgress@Base 2.1.0 + GDALWarpAppOptionsSetQuiet@Base 2.3.0 + GDALWarpAppOptionsSetWarpOption@Base 2.1.0 + GDALWarpCutlineMasker@Base 1.8.0 + GDALWarpDstAlphaMasker@Base 1.8.0 + GDALWarpInitDefaultBandMapping@Base 2.3.0 + GDALWarpInitDstNoDataImag@Base 2.3.0 + GDALWarpInitDstNoDataReal@Base 2.3.0 + GDALWarpInitNoDataReal@Base 2.3.0 + GDALWarpInitSrcNoDataImag@Base 2.3.0 + GDALWarpInitSrcNoDataReal@Base 2.3.0 + GDALWarpNoDataMasker@Base 1.8.0 + GDALWarpRegion@Base 1.8.0 + GDALWarpRegionToBuffer@Base 1.8.0 + GDALWarpResolveWorkingDataType@Base 2.3.0 + GDALWarpSrcAlphaMasker@Base 1.8.0 + GDALWarpSrcMaskMasker@Base 1.8.0 + GDALWriteBlock@Base 1.8.0 + GDALWriteWorldFile@Base 1.8.0 + GDAL_CG_Create@Base 1.8.0 + GDAL_CG_Destroy@Base 1.8.0 + GDAL_CG_FeedLine@Base 1.8.0 + GNMCastToGenericNetwork@Base 2.3.0 + GNMCastToNetwork@Base 2.3.0 + GNMChangeAllBlockState@Base 2.2.0 + GNMChangeBlockState@Base 2.2.0 + GNMConnectFeatures@Base 2.2.0 + GNMConnectPointsByLines@Base 2.2.0 + GNMCreateRule@Base 2.2.0 + GNMDeleteAllRules@Base 2.2.0 + GNMDeleteRule@Base 2.2.0 + GNMDisconnectAll@Base 2.2.0 + GNMDisconnectFeatures@Base 2.2.0 + GNMDisconnectFeaturesWithId@Base 2.2.0 + GNMGetFeatureByGlobalFID@Base 2.2.0 + GNMGetName@Base 2.2.0 + GNMGetPath@Base 2.2.0 + GNMGetRules@Base 2.2.0 + GNMGetVersion@Base 2.2.0 + GNMReconnectFeatures@Base 2.2.0 + GOA2GetAccessToken@Base 1.10.1 + GOA2GetAccessTokenFromCloudEngineVM@Base 2.3.0 + GOA2GetAccessTokenFromServiceAccount@Base 2.3.0 + GOA2GetAuthorizationURL@Base 1.10.1 + GOA2GetRefreshToken@Base 1.10.1 + GTIFFBuildOverviews@Base 1.8.0 + GTIFGetOGISDefn@Base 1.8.0 + GTIFMemBufFromWkt@Base 1.8.0 + GTIFSetFromOGISDefn@Base 1.8.0 + GTIFWktFromMemBuf@Base 1.8.0 + GetGDALDriverManager@Base 1.8.0 + HFAAuxBuildOverviews@Base 1.8.0 + HFAClose@Base 1.8.0 + HFACreate@Base 1.8.0 + HFACreateLL@Base 1.8.0 + HFACreateOverview@Base 1.8.0 + HFADumpDictionary@Base 1.8.0 + HFADumpTree@Base 1.8.0 + HFAEvaluateXFormStack@Base 1.8.0 + HFAFlush@Base 1.8.0 + HFAGetBandInfo@Base 1.8.0 + HFAGetBandNoData@Base 1.8.0 + HFAGetDataRange@Base 1.8.0 + HFAGetDataTypeBits@Base 1.8.0 + HFAGetDataTypeName@Base 1.8.0 + HFAGetDatum@Base 1.8.0 + HFAGetGeoTransform@Base 1.8.0 + HFAGetIGEFilename@Base 1.8.0 + HFAGetMapInfo@Base 1.8.0 + HFAGetMetadata@Base 1.8.0 + HFAGetOverviewCount@Base 1.8.0 + HFAGetOverviewInfo@Base 1.8.0 + HFAGetOverviewRasterBlock@Base 1.8.0 + HFAGetOverviewRasterBlockEx@Base 1.8.0 + HFAGetPCT@Base 1.8.0 + HFAGetPEString@Base 1.8.0 + HFAGetProParameters@Base 1.8.0 + HFAGetRasterBlock@Base 1.8.0 + HFAGetRasterBlockEx@Base 1.8.0 + HFAGetRasterInfo@Base 1.8.0 + HFAOpen@Base 1.8.0 + HFAReadCameraModel@Base 1.8.0 + HFAReadElevationUnit@Base 2.2.0 + HFAReadXFormStack@Base 1.8.0 + HFASetBandNoData@Base 1.8.0 + HFASetDatum@Base 1.8.0 + HFASetGeoTransform@Base 1.8.0 + HFASetMapInfo@Base 1.8.0 + HFASetMetadata@Base 1.8.0 + HFASetOverviewRasterBlock@Base 1.8.0 + HFASetPCT@Base 1.8.0 + HFASetPEString@Base 1.8.0 + HFASetProParameters@Base 1.8.0 + HFASetRasterBlock@Base 1.8.0 + HFAWriteXFormStack@Base 1.8.0 + LibgeotiffOneTimeInit@Base 1.10.1 + MEMCreateRasterBand@Base 1.8.0 + MEMCreateRasterBandEx@Base 2.1.0 + NITFClose@Base 1.8.0 + NITFCollectAttachments@Base 1.8.0 + NITFCreate@Base 1.8.0 + NITFDESAccess@Base 1.8.0 + NITFDESDeaccess@Base 1.8.0 + NITFDESExtractShapefile@Base 1.8.0 + NITFDESFreeTREData@Base 1.8.0 + NITFDESGetTRE@Base 1.8.0 + NITFFindTRE@Base 1.8.0 + NITFFindTREByIndex@Base 1.8.0 + NITFGetSeriesInfo@Base 1.8.0 + NITFIHFieldOffset@Base 1.8.0 + NITFImageAccess@Base 1.8.0 + NITFImageDeaccess@Base 1.8.0 + NITFOpen@Base 1.8.0 + NITFRPCGeoToImage@Base 1.8.0 + NITFReadBLOCKA@Base 1.8.0 + NITFReadCSEXRA@Base 1.9.0 + NITFReadICHIPB@Base 1.8.0 + NITFReadImageBlock@Base 1.8.0 + NITFReadImageLine@Base 1.8.0 + NITFReadPIAIMC@Base 1.9.0 + NITFReadRPC00B@Base 1.8.0 + NITFReadSTDIDC@Base 1.8.0 + NITFReadUSE00A@Base 1.8.0 + NITFReconcileAttachments@Base 1.8.0 + NITFWriteIGEOLO@Base 1.8.0 + NITFWriteImageBlock@Base 1.8.0 + NITFWriteImageLine@Base 1.8.0 + NITFWriteLUT@Base 1.8.0 + NITF_WGS84_Geocentric_Latitude_To_Geodetic_Latitude@Base 1.8.0 + OCTDestroyCoordinateTransformation@Base 1.8.0 + OCTNewCoordinateTransformation@Base 1.8.0 + OCTTransform@Base 1.8.0 + OCTTransformEx@Base 1.8.0 + OGR2SQLITE_static_register@Base 1.10.1 + OGRBuildPolygonFromEdges@Base 1.8.0 + OGRCalloc@Base 1.8.0 + OGRCleanupAll@Base 1.8.0 + OGRContourWriter@Base 1.8.0 + OGRDeregisterDriver@Base 1.8.0 + OGRFree@Base 1.8.0 + OGRGeocode@Base 1.10.1 + OGRGeocodeCreateSession@Base 1.10.1 + OGRGeocodeDestroySession@Base 1.10.1 + OGRGeocodeFreeResult@Base 1.10.1 + OGRGeocodeReverse@Base 1.10.1 + OGRGeometryTypeToName@Base 1.8.0 + OGRGetDriver@Base 1.8.0 + OGRGetDriverByName@Base 1.8.0 + OGRGetDriverCount@Base 1.8.0 + OGRGetGenerate_DB2_V72_BYTE_ORDER@Base 1.8.0 + OGRGetNonLinearGeometriesEnabledFlag@Base 2.0.1 + OGRGetOpenDS@Base 1.8.0 + OGRGetOpenDSCount@Base 1.8.0 + OGRMalloc@Base 1.8.0 + OGRMergeGeometryTypes@Base 1.8.0 + OGRMergeGeometryTypesEx@Base 2.0.1 + OGROpen@Base 1.8.0 + OGROpenShared@Base 1.8.0 + OGRParseDate@Base 1.8.0 + OGRRealloc@Base 1.8.0 + OGRRegisterAll@Base 1.8.0 + OGRRegisterDriver@Base 1.8.0 + OGRReleaseDataSource@Base 1.8.0 + OGRSetGenerate_DB2_V72_BYTE_ORDER@Base 1.8.0 + OGRSetNonLinearGeometriesEnabledFlag@Base 2.0.1 + OGR_AreTypeSubTypeCompatible@Base 2.0.1 + OGR_DS_CopyLayer@Base 1.8.0 + OGR_DS_CreateLayer@Base 1.8.0 + OGR_DS_DeleteLayer@Base 1.8.0 + OGR_DS_Dereference@Base 1.8.0 + OGR_DS_Destroy@Base 1.8.0 + OGR_DS_ExecuteSQL@Base 1.8.0 + OGR_DS_GetDriver@Base 1.8.0 + OGR_DS_GetLayer@Base 1.8.0 + OGR_DS_GetLayerByName@Base 1.8.0 + OGR_DS_GetLayerCount@Base 1.8.0 + OGR_DS_GetName@Base 1.8.0 + OGR_DS_GetRefCount@Base 1.8.0 + OGR_DS_GetStyleTable@Base 1.8.0 + OGR_DS_GetSummaryRefCount@Base 1.8.0 + OGR_DS_Reference@Base 1.8.0 + OGR_DS_ReleaseResultSet@Base 1.8.0 + OGR_DS_SetStyleTable@Base 1.8.0 + OGR_DS_SetStyleTableDirectly@Base 1.8.0 + OGR_DS_SyncToDisk@Base 1.8.0 + OGR_DS_TestCapability@Base 1.8.0 + OGR_Dr_CopyDataSource@Base 1.8.0 + OGR_Dr_CreateDataSource@Base 1.8.0 + OGR_Dr_DeleteDataSource@Base 1.8.0 + OGR_Dr_GetName@Base 1.8.0 + OGR_Dr_Open@Base 1.8.0 + OGR_Dr_TestCapability@Base 1.8.0 + OGR_FD_AddFieldDefn@Base 1.8.0 + OGR_FD_AddGeomFieldDefn@Base 1.11.0 + OGR_FD_Create@Base 1.8.0 + OGR_FD_DeleteFieldDefn@Base 1.9.0 + OGR_FD_DeleteGeomFieldDefn@Base 1.11.0 + OGR_FD_Dereference@Base 1.8.0 + OGR_FD_Destroy@Base 1.8.0 + OGR_FD_GetFieldCount@Base 1.8.0 + OGR_FD_GetFieldDefn@Base 1.8.0 + OGR_FD_GetFieldIndex@Base 1.8.0 + OGR_FD_GetGeomFieldCount@Base 1.11.0 + OGR_FD_GetGeomFieldDefn@Base 1.11.0 + OGR_FD_GetGeomFieldIndex@Base 1.11.0 + OGR_FD_GetGeomType@Base 1.8.0 + OGR_FD_GetName@Base 1.8.0 + OGR_FD_GetReferenceCount@Base 1.8.0 + OGR_FD_IsGeometryIgnored@Base 1.8.0 + OGR_FD_IsSame@Base 1.11.0 + OGR_FD_IsStyleIgnored@Base 1.8.0 + OGR_FD_Reference@Base 1.8.0 + OGR_FD_Release@Base 1.8.0 + OGR_FD_ReorderFieldDefns@Base 2.1.0 + OGR_FD_SetGeomType@Base 1.8.0 + OGR_FD_SetGeometryIgnored@Base 1.8.0 + OGR_FD_SetStyleIgnored@Base 1.8.0 + OGR_F_Clone@Base 1.8.0 + OGR_F_Create@Base 1.8.0 + OGR_F_Destroy@Base 1.8.0 + OGR_F_DumpReadable@Base 1.8.0 + OGR_F_Equal@Base 1.8.0 + OGR_F_FillUnsetWithDefault@Base 2.0.1 + OGR_F_GetDefnRef@Base 1.8.0 + OGR_F_GetFID@Base 1.8.0 + OGR_F_GetFieldAsBinary@Base 1.8.0 + OGR_F_GetFieldAsDateTime@Base 1.8.0 + OGR_F_GetFieldAsDateTimeEx@Base 2.0.1 + OGR_F_GetFieldAsDouble@Base 1.8.0 + OGR_F_GetFieldAsDoubleList@Base 1.8.0 + OGR_F_GetFieldAsInteger64@Base 2.0.1 + OGR_F_GetFieldAsInteger64List@Base 2.0.1 + OGR_F_GetFieldAsInteger@Base 1.8.0 + OGR_F_GetFieldAsIntegerList@Base 1.8.0 + OGR_F_GetFieldAsString@Base 1.8.0 + OGR_F_GetFieldAsStringList@Base 1.8.0 + OGR_F_GetFieldCount@Base 1.8.0 + OGR_F_GetFieldDefnRef@Base 1.8.0 + OGR_F_GetFieldIndex@Base 1.8.0 + OGR_F_GetGeomFieldCount@Base 1.11.0 + OGR_F_GetGeomFieldDefnRef@Base 1.11.0 + OGR_F_GetGeomFieldIndex@Base 1.11.0 + OGR_F_GetGeomFieldRef@Base 1.11.0 + OGR_F_GetGeometryRef@Base 1.8.0 + OGR_F_GetNativeData@Base 2.1.0 + OGR_F_GetNativeMediaType@Base 2.1.0 + OGR_F_GetRawFieldRef@Base 1.8.0 + OGR_F_GetStyleString@Base 1.8.0 + OGR_F_GetStyleTable@Base 1.8.0 + OGR_F_IsFieldNull@Base 2.2.0 + OGR_F_IsFieldSet@Base 1.8.0 + OGR_F_IsFieldSetAndNotNull@Base 2.2.0 + OGR_F_SetFID@Base 1.8.0 + OGR_F_SetFieldBinary@Base 1.8.0 + OGR_F_SetFieldDateTime@Base 1.8.0 + OGR_F_SetFieldDateTimeEx@Base 2.0.1 + OGR_F_SetFieldDouble@Base 1.8.0 + OGR_F_SetFieldDoubleList@Base 1.8.0 + OGR_F_SetFieldInteger64@Base 2.0.1 + OGR_F_SetFieldInteger64List@Base 2.0.1 + OGR_F_SetFieldInteger@Base 1.8.0 + OGR_F_SetFieldIntegerList@Base 1.8.0 + OGR_F_SetFieldNull@Base 2.2.0 + OGR_F_SetFieldRaw@Base 1.8.0 + OGR_F_SetFieldString@Base 1.8.0 + OGR_F_SetFieldStringList@Base 1.8.0 + OGR_F_SetFrom@Base 1.8.0 + OGR_F_SetFromWithMap@Base 1.8.0 + OGR_F_SetGeomField@Base 1.11.0 + OGR_F_SetGeomFieldDirectly@Base 1.11.0 + OGR_F_SetGeometry@Base 1.8.0 + OGR_F_SetGeometryDirectly@Base 1.8.0 + OGR_F_SetNativeData@Base 2.1.0 + OGR_F_SetNativeMediaType@Base 2.1.0 + OGR_F_SetStyleString@Base 1.8.0 + OGR_F_SetStyleStringDirectly@Base 1.8.0 + OGR_F_SetStyleTable@Base 1.8.0 + OGR_F_SetStyleTableDirectly@Base 1.8.0 + OGR_F_StealGeometry@Base 1.8.0 + OGR_F_UnsetField@Base 1.8.0 + OGR_F_Validate@Base 2.0.1 + OGR_Fld_Create@Base 1.8.0 + OGR_Fld_Destroy@Base 1.8.0 + OGR_Fld_GetDefault@Base 2.0.1 + OGR_Fld_GetJustify@Base 1.8.0 + OGR_Fld_GetNameRef@Base 1.8.0 + OGR_Fld_GetPrecision@Base 1.8.0 + OGR_Fld_GetSubType@Base 2.0.1 + OGR_Fld_GetType@Base 1.8.0 + OGR_Fld_GetWidth@Base 1.8.0 + OGR_Fld_IsDefaultDriverSpecific@Base 2.0.1 + OGR_Fld_IsIgnored@Base 1.8.0 + OGR_Fld_IsNullable@Base 2.0.1 + OGR_Fld_Set@Base 1.8.0 + OGR_Fld_SetDefault@Base 2.0.1 + OGR_Fld_SetIgnored@Base 1.8.0 + OGR_Fld_SetJustify@Base 1.8.0 + OGR_Fld_SetName@Base 1.8.0 + OGR_Fld_SetNullable@Base 2.0.1 + OGR_Fld_SetPrecision@Base 1.8.0 + OGR_Fld_SetSubType@Base 2.0.1 + OGR_Fld_SetType@Base 1.8.0 + OGR_Fld_SetWidth@Base 1.8.0 + OGR_GFld_Create@Base 1.11.0 + OGR_GFld_Destroy@Base 1.11.0 + OGR_GFld_GetNameRef@Base 1.11.0 + OGR_GFld_GetSpatialRef@Base 1.11.0 + OGR_GFld_GetType@Base 1.11.0 + OGR_GFld_IsIgnored@Base 1.11.0 + OGR_GFld_IsNullable@Base 2.0.1 + OGR_GFld_SetIgnored@Base 1.11.0 + OGR_GFld_SetName@Base 1.11.0 + OGR_GFld_SetNullable@Base 2.0.1 + OGR_GFld_SetSpatialRef@Base 1.11.0 + OGR_GFld_SetType@Base 1.11.0 + OGR_GT_Flatten@Base 2.0.1 + OGR_GT_GetCollection@Base 2.0.1 + OGR_GT_GetCurve@Base 2.0.1 + OGR_GT_GetLinear@Base 2.0.1 + OGR_GT_HasM@Base 2.1.0 + OGR_GT_HasZ@Base 2.0.1 + OGR_GT_IsCurve@Base 2.0.1 + OGR_GT_IsNonLinear@Base 2.0.1 + OGR_GT_IsSubClassOf@Base 2.0.1 + OGR_GT_IsSurface@Base 2.0.1 + OGR_GT_SetM@Base 2.1.0 + OGR_GT_SetModifier@Base 2.0.1 + OGR_GT_SetZ@Base 2.0.1 + OGR_G_AddGeometry@Base 1.8.0 + OGR_G_AddGeometryDirectly@Base 1.8.0 + OGR_G_AddPoint@Base 1.8.0 + OGR_G_AddPointM@Base 2.1.0 + OGR_G_AddPointZM@Base 2.1.0 + OGR_G_AddPoint_2D@Base 1.8.0 + OGR_G_ApproximateArcAngles@Base 1.8.0 + OGR_G_Area@Base 1.8.0 + OGR_G_AssignSpatialReference@Base 1.8.0 + OGR_G_Boundary@Base 1.8.0 + OGR_G_Buffer@Base 1.8.0 + OGR_G_Centroid@Base 1.8.0 + OGR_G_Clone@Base 1.8.0 + OGR_G_CloseRings@Base 1.8.0 + OGR_G_Contains@Base 1.8.0 + OGR_G_ConvexHull@Base 1.8.0 + OGR_G_CoordinateDimension@Base 2.1.0 + OGR_G_CreateFromFgf@Base 1.8.0 + OGR_G_CreateFromGML@Base 1.8.0 + OGR_G_CreateFromGMLTree@Base 1.8.0 + OGR_G_CreateFromWkb@Base 1.8.0 + OGR_G_CreateFromWkt@Base 1.8.0 + OGR_G_CreateGeometry@Base 1.8.0 + OGR_G_CreateGeometryFromJson@Base 1.8.0 + OGR_G_Crosses@Base 1.8.0 + OGR_G_DelaunayTriangulation@Base 2.1.0 + OGR_G_DestroyGeometry@Base 1.8.0 + OGR_G_Difference@Base 1.8.0 + OGR_G_Disjoint@Base 1.8.0 + OGR_G_Distance3D@Base 2.2.0 + OGR_G_Distance@Base 1.8.0 + OGR_G_DumpReadable@Base 1.8.0 + OGR_G_Empty@Base 1.8.0 + OGR_G_Equal@Base 1.8.0 + OGR_G_Equals@Base 1.8.0 + OGR_G_ExportEnvelopeToGMLTree@Base 1.8.0 + OGR_G_ExportToGML@Base 1.8.0 + OGR_G_ExportToGMLEx@Base 1.8.0 + OGR_G_ExportToGMLTree@Base 1.8.0 + OGR_G_ExportToIsoWkb@Base 2.0.1 + OGR_G_ExportToIsoWkt@Base 2.0.1 + OGR_G_ExportToJson@Base 1.8.0 + OGR_G_ExportToJsonEx@Base 1.9.0 + OGR_G_ExportToKML@Base 1.8.0 + OGR_G_ExportToWkb@Base 1.8.0 + OGR_G_ExportToWkt@Base 1.8.0 + OGR_G_FlattenTo2D@Base 1.8.0 + OGR_G_ForceTo@Base 2.0.1 + OGR_G_ForceToLineString@Base 1.10.1 + OGR_G_ForceToMultiLineString@Base 1.8.0 + OGR_G_ForceToMultiPoint@Base 1.8.0 + OGR_G_ForceToMultiPolygon@Base 1.8.0 + OGR_G_ForceToPolygon@Base 1.8.0 + OGR_G_GetArea@Base 1.8.0 + OGR_G_GetBoundary@Base 1.8.0 + OGR_G_GetCoordinateDimension@Base 1.8.0 + OGR_G_GetCurveGeometry@Base 2.0.1 + OGR_G_GetDimension@Base 1.8.0 + OGR_G_GetEnvelope3D@Base 1.9.0 + OGR_G_GetEnvelope@Base 1.8.0 + OGR_G_GetGeometryCount@Base 1.8.0 + OGR_G_GetGeometryName@Base 1.8.0 + OGR_G_GetGeometryRef@Base 1.8.0 + OGR_G_GetGeometryType@Base 1.8.0 + OGR_G_GetLinearGeometry@Base 2.0.1 + OGR_G_GetM@Base 2.1.0 + OGR_G_GetPoint@Base 1.8.0 + OGR_G_GetPointCount@Base 1.8.0 + OGR_G_GetPointZM@Base 2.1.0 + OGR_G_GetPoints@Base 1.9.0 + OGR_G_GetPointsZM@Base 2.1.0 + OGR_G_GetSpatialReference@Base 1.8.0 + OGR_G_GetX@Base 1.8.0 + OGR_G_GetY@Base 1.8.0 + OGR_G_GetZ@Base 1.8.0 + OGR_G_HasCurveGeometry@Base 2.0.1 + OGR_G_ImportFromWkb@Base 1.8.0 + OGR_G_ImportFromWkt@Base 1.8.0 + OGR_G_Intersect@Base 1.8.0 + OGR_G_Intersection@Base 1.8.0 + OGR_G_Intersects@Base 1.8.0 + OGR_G_Is3D@Base 2.1.0 + OGR_G_IsEmpty@Base 1.8.0 + OGR_G_IsMeasured@Base 2.1.0 + OGR_G_IsRing@Base 1.8.0 + OGR_G_IsSimple@Base 1.8.0 + OGR_G_IsValid@Base 1.8.0 + OGR_G_Length@Base 1.8.0 + OGR_G_Overlaps@Base 1.8.0 + OGR_G_PointOnSurface@Base 1.10.1 + OGR_G_Polygonize@Base 1.9.0 + OGR_G_RemoveGeometry@Base 1.8.0 + OGR_G_Segmentize@Base 1.8.0 + OGR_G_Set3D@Base 2.1.0 + OGR_G_SetCoordinateDimension@Base 1.8.0 + OGR_G_SetMeasured@Base 2.1.0 + OGR_G_SetPoint@Base 1.8.0 + OGR_G_SetPointCount@Base 1.11.0 + OGR_G_SetPointM@Base 2.1.0 + OGR_G_SetPointZM@Base 2.1.0 + OGR_G_SetPoint_2D@Base 1.8.0 + OGR_G_SetPoints@Base 1.11.0 + OGR_G_SetPointsZM@Base 2.1.0 + OGR_G_Simplify@Base 1.8.0 + OGR_G_SimplifyPreserveTopology@Base 1.9.0 + OGR_G_SwapXY@Base 2.3.0 + OGR_G_SymDifference@Base 1.8.0 + OGR_G_SymmetricDifference@Base 1.8.0 + OGR_G_Touches@Base 1.8.0 + OGR_G_Transform@Base 1.8.0 + OGR_G_TransformTo@Base 1.8.0 + OGR_G_Union@Base 1.8.0 + OGR_G_UnionCascaded@Base 1.8.0 + OGR_G_Value@Base 2.0.1 + OGR_G_Within@Base 1.8.0 + OGR_G_WkbSize@Base 1.8.0 + OGR_GetFieldSubTypeName@Base 2.0.1 + OGR_GetFieldTypeName@Base 1.8.0 + OGR_L_AlterFieldDefn@Base 1.9.0 + OGR_L_Clip@Base 1.10.1 + OGR_L_CommitTransaction@Base 1.8.0 + OGR_L_CreateFeature@Base 1.8.0 + OGR_L_CreateField@Base 1.8.0 + OGR_L_CreateGeomField@Base 1.11.0 + OGR_L_DeleteFeature@Base 1.8.0 + OGR_L_DeleteField@Base 1.9.0 + OGR_L_Dereference@Base 1.8.0 + OGR_L_Erase@Base 1.10.1 + OGR_L_FindFieldIndex@Base 1.11.0 + OGR_L_GetExtent@Base 1.8.0 + OGR_L_GetExtentEx@Base 1.11.0 + OGR_L_GetFIDColumn@Base 1.8.0 + OGR_L_GetFeature@Base 1.8.0 + OGR_L_GetFeatureCount@Base 1.8.0 + OGR_L_GetFeaturesRead@Base 1.8.0 + OGR_L_GetGeomType@Base 1.8.0 + OGR_L_GetGeometryColumn@Base 1.8.0 + OGR_L_GetLayerDefn@Base 1.8.0 + OGR_L_GetName@Base 1.8.0 + OGR_L_GetNextFeature@Base 1.8.0 + OGR_L_GetRefCount@Base 1.8.0 + OGR_L_GetSpatialFilter@Base 1.8.0 + OGR_L_GetSpatialRef@Base 1.8.0 + OGR_L_GetStyleTable@Base 1.8.0 + OGR_L_Identity@Base 1.10.1 + OGR_L_Intersection@Base 1.10.1 + OGR_L_Reference@Base 1.8.0 + OGR_L_ReorderField@Base 1.9.0 + OGR_L_ReorderFields@Base 1.9.0 + OGR_L_ResetReading@Base 1.8.0 + OGR_L_RollbackTransaction@Base 1.8.0 + OGR_L_SetAttributeFilter@Base 1.8.0 + OGR_L_SetFeature@Base 1.8.0 + OGR_L_SetIgnoredFields@Base 1.8.0 + OGR_L_SetNextByIndex@Base 1.8.0 + OGR_L_SetSpatialFilter@Base 1.8.0 + OGR_L_SetSpatialFilterEx@Base 1.11.0 + OGR_L_SetSpatialFilterRect@Base 1.8.0 + OGR_L_SetSpatialFilterRectEx@Base 1.11.0 + OGR_L_SetStyleTable@Base 1.8.0 + OGR_L_SetStyleTableDirectly@Base 1.8.0 + OGR_L_StartTransaction@Base 1.8.0 + OGR_L_SymDifference@Base 1.10.1 + OGR_L_SyncToDisk@Base 1.8.0 + OGR_L_TestCapability@Base 1.8.0 + OGR_L_Union@Base 1.10.1 + OGR_L_Update@Base 1.10.1 + OGR_RawField_IsNull@Base 2.2.0 + OGR_RawField_IsUnset@Base 2.2.0 + OGR_RawField_SetNull@Base 2.2.0 + OGR_RawField_SetUnset@Base 2.2.0 + OGR_SM_AddPart@Base 1.8.0 + OGR_SM_AddStyle@Base 1.8.0 + OGR_SM_Create@Base 1.8.0 + OGR_SM_Destroy@Base 1.8.0 + OGR_SM_GetPart@Base 1.8.0 + OGR_SM_GetPartCount@Base 1.8.0 + OGR_SM_InitFromFeature@Base 1.8.0 + OGR_SM_InitStyleString@Base 1.8.0 + OGR_STBL_AddStyle@Base 1.11.0 + OGR_STBL_Create@Base 1.8.0 + OGR_STBL_Destroy@Base 1.8.0 + OGR_STBL_Find@Base 1.8.0 + OGR_STBL_GetLastStyleName@Base 1.8.0 + OGR_STBL_GetNextStyle@Base 1.8.0 + OGR_STBL_LoadStyleTable@Base 1.8.0 + OGR_STBL_ResetStyleStringReading@Base 1.8.0 + OGR_STBL_SaveStyleTable@Base 1.8.0 + OGR_ST_Create@Base 1.8.0 + OGR_ST_Destroy@Base 1.8.0 + OGR_ST_GetParamDbl@Base 1.8.0 + OGR_ST_GetParamNum@Base 1.8.0 + OGR_ST_GetParamStr@Base 1.8.0 + OGR_ST_GetRGBFromString@Base 1.8.0 + OGR_ST_GetStyleString@Base 1.8.0 + OGR_ST_GetType@Base 1.8.0 + OGR_ST_GetUnit@Base 1.8.0 + OGR_ST_SetParamDbl@Base 1.8.0 + OGR_ST_SetParamNum@Base 1.8.0 + OGR_ST_SetParamStr@Base 1.8.0 + OGR_ST_SetUnit@Base 1.8.0 + OPTGetParameterInfo@Base 1.8.0 + OPTGetParameterList@Base 1.8.0 + OPTGetProjectionMethods@Base 1.8.0 + OSRAutoIdentifyEPSG@Base 1.8.0 + OSRAxisEnumToName@Base 1.8.0 + OSRCalcInvFlattening@Base 2.0.1 + OSRCalcSemiMinorFromInvFlattening@Base 2.0.1 + OSRCleanup@Base 1.8.0 + OSRClone@Base 1.8.0 + OSRCloneGeogCS@Base 1.8.0 + OSRConvertToOtherProjection@Base 2.3.0 + OSRCopyGeogCSFrom@Base 1.8.0 + OSRDereference@Base 1.8.0 + OSRDestroySpatialReference@Base 1.8.0 + OSREPSGTreatsAsLatLong@Base 1.8.0 + OSREPSGTreatsAsNorthingEasting@Base 1.10.1 + OSRExportToERM@Base 1.8.0 + OSRExportToMICoordSys@Base 1.8.0 + OSRExportToPCI@Base 1.8.0 + OSRExportToPanorama@Base 1.8.0 + OSRExportToPrettyWkt@Base 1.8.0 + OSRExportToProj4@Base 1.8.0 + OSRExportToUSGS@Base 1.8.0 + OSRExportToWkt@Base 1.8.0 + OSRExportToXML@Base 1.8.0 + OSRFindMatches@Base 2.3.0 + OSRFixup@Base 1.8.0 + OSRFixupOrdering@Base 1.8.0 + OSRFreeSRSArray@Base 2.3.0 + OSRGetAngularUnits@Base 1.8.0 + OSRGetAttrValue@Base 1.8.0 + OSRGetAuthorityCode@Base 1.8.0 + OSRGetAuthorityName@Base 1.8.0 + OSRGetAxis@Base 1.8.0 + OSRGetInvFlattening@Base 1.8.0 + OSRGetLinearUnits@Base 1.8.0 + OSRGetNormProjParm@Base 1.8.0 + OSRGetPrimeMeridian@Base 1.8.0 + OSRGetProjParm@Base 1.8.0 + OSRGetSemiMajor@Base 1.8.0 + OSRGetSemiMinor@Base 1.8.0 + OSRGetTOWGS84@Base 1.8.0 + OSRGetTargetLinearUnits@Base 1.9.0 + OSRGetUTMZone@Base 1.8.0 + OSRImportFromDict@Base 1.8.0 + OSRImportFromEPSG@Base 1.8.0 + OSRImportFromEPSGA@Base 1.8.0 + OSRImportFromERM@Base 1.8.0 + OSRImportFromESRI@Base 1.8.0 + OSRImportFromMICoordSys@Base 1.8.0 + OSRImportFromOzi@Base 1.8.0 + OSRImportFromPCI@Base 1.8.0 + OSRImportFromPanorama@Base 1.8.0 + OSRImportFromProj4@Base 1.8.0 + OSRImportFromUSGS@Base 1.8.0 + OSRImportFromUrl@Base 1.8.0 + OSRImportFromWkt@Base 1.8.0 + OSRImportFromXML@Base 1.8.0 + OSRIsCompound@Base 1.9.0 + OSRIsGeocentric@Base 1.9.0 + OSRIsGeographic@Base 1.8.0 + OSRIsLocal@Base 1.8.0 + OSRIsProjected@Base 1.8.0 + OSRIsSame@Base 1.8.0 + OSRIsSameGeogCS@Base 1.8.0 + OSRIsSameVertCS@Base 1.9.0 + OSRIsVertical@Base 1.8.0 + OSRMorphFromESRI@Base 1.8.0 + OSRMorphToESRI@Base 1.8.0 + OSRNewSpatialReference@Base 1.8.0 + OSRReference@Base 1.8.0 + OSRRelease@Base 1.8.0 + OSRSetACEA@Base 1.8.0 + OSRSetAE@Base 1.8.0 + OSRSetAngularUnits@Base 1.8.0 + OSRSetAttrValue@Base 1.8.0 + OSRSetAuthority@Base 1.8.0 + OSRSetAxes@Base 2.0.2 + OSRSetBonne@Base 1.8.0 + OSRSetCEA@Base 1.8.0 + OSRSetCS@Base 1.8.0 + OSRSetCompoundCS@Base 1.9.0 + OSRSetEC@Base 1.8.0 + OSRSetEckert@Base 1.8.0 + OSRSetEckertIV@Base 1.8.0 + OSRSetEckertVI@Base 1.8.0 + OSRSetEquirectangular2@Base 1.8.0 + OSRSetEquirectangular@Base 1.8.0 + OSRSetFromUserInput@Base 1.8.0 + OSRSetGEOS@Base 1.8.0 + OSRSetGH@Base 1.8.0 + OSRSetGS@Base 1.8.0 + OSRSetGaussSchreiberTMercator@Base 1.8.0 + OSRSetGeocCS@Base 1.9.0 + OSRSetGeogCS@Base 1.8.0 + OSRSetGnomonic@Base 1.8.0 + OSRSetHOM2PNO@Base 1.8.0 + OSRSetHOM@Base 1.8.0 + OSRSetHOMAC@Base 2.0.2 + OSRSetIGH@Base 1.9.0 + OSRSetIWMPolyconic@Base 1.8.0 + OSRSetKrovak@Base 1.8.0 + OSRSetLAEA@Base 1.8.0 + OSRSetLCC1SP@Base 1.8.0 + OSRSetLCC@Base 1.8.0 + OSRSetLCCB@Base 1.8.0 + OSRSetLinearUnits@Base 1.8.0 + OSRSetLinearUnitsAndUpdateParameters@Base 1.8.0 + OSRSetLocalCS@Base 1.8.0 + OSRSetMC@Base 1.8.0 + OSRSetMercator2SP@Base 2.0.2 + OSRSetMercator@Base 1.8.0 + OSRSetMollweide@Base 1.8.0 + OSRSetNZMG@Base 1.8.0 + OSRSetNormProjParm@Base 1.8.0 + OSRSetOS@Base 1.8.0 + OSRSetOrthographic@Base 1.8.0 + OSRSetPS@Base 1.8.0 + OSRSetPolyconic@Base 1.8.0 + OSRSetProjCS@Base 1.8.0 + OSRSetProjParm@Base 1.8.0 + OSRSetProjection@Base 1.8.0 + OSRSetQSC@Base 2.0.1 + OSRSetRobinson@Base 1.8.0 + OSRSetSCH@Base 2.1.0 + OSRSetSOC@Base 1.8.0 + OSRSetSinusoidal@Base 1.8.0 + OSRSetStatePlane@Base 1.8.0 + OSRSetStatePlaneWithUnits@Base 1.8.0 + OSRSetStereographic@Base 1.8.0 + OSRSetTM@Base 1.8.0 + OSRSetTMG@Base 1.8.0 + OSRSetTMSO@Base 1.8.0 + OSRSetTMVariant@Base 1.8.0 + OSRSetTOWGS84@Base 1.8.0 + OSRSetTPED@Base 2.0.2 + OSRSetTargetLinearUnits@Base 1.9.0 + OSRSetUTM@Base 1.8.0 + OSRSetVDG@Base 1.8.0 + OSRSetVertCS@Base 1.9.0 + OSRSetWagner@Base 2.0.2 + OSRSetWellKnownGeogCS@Base 1.8.0 + OSRStripCTParms@Base 1.8.0 + OSRValidate@Base 1.8.0 + ParseAlgorithmAndOptions@Base 1.8.0 + RECGetField@Base 1.8.0 + RECGetFieldCount@Base 1.8.0 + RECGetFieldDefinition@Base 1.8.0 + RECReadRecord@Base 1.8.0 + RPCInfoToMD@Base 1.10.1 + RPFTOCFree@Base 1.8.0 + RPFTOCRead@Base 1.8.0 + RPFTOCReadFromBuffer@Base 1.8.0 + RegisterGNMDatabase@Base 2.2.0 + RegisterGNMFile@Base 2.2.0 + RegisterOGRARCGEN@Base 1.9.0 + RegisterOGRAVCBin@Base 1.8.0 + RegisterOGRAVCE00@Base 1.8.0 + RegisterOGRAeronavFAA@Base 1.8.0 + RegisterOGRAmigoCloud@Base 2.1.0 + RegisterOGRBNA@Base 1.8.0 + RegisterOGRCAD@Base 2.2.0 + RegisterOGRCSV@Base 1.8.0 + RegisterOGRCSW@Base 2.0.1 + RegisterOGRCarto@Base 2.1.2 + RegisterOGRCloudant@Base 2.0.1 + RegisterOGRCouchDB@Base 1.9.0 + RegisterOGRDGN@Base 1.8.0 + RegisterOGRDODS@Base 1.8.0 + RegisterOGRDXF@Base 1.8.0 + RegisterOGREDIGEO@Base 1.9.0 + RegisterOGRESRIJSON@Base 2.3.0 + RegisterOGRElastic@Base 1.10.1 + RegisterOGRGFT@Base 1.9.0 + RegisterOGRGML@Base 1.8.0 + RegisterOGRGMLAS@Base 2.2.0 + RegisterOGRGMT@Base 1.8.0 + RegisterOGRGPSBabel@Base 1.8.0 + RegisterOGRGPX@Base 1.8.0 + RegisterOGRGTM@Base 1.8.0 + RegisterOGRGeoJSON@Base 1.8.0 + RegisterOGRGeoJSONSeq@Base 2.4.0 + RegisterOGRGeoPackage@Base 1.11.0 + RegisterOGRGeoRSS@Base 1.8.0 + RegisterOGRGeoconcept@Base 1.8.0 + RegisterOGRGeomedia@Base 1.9.0 + RegisterOGRHTF@Base 1.8.0 + RegisterOGRILI1@Base 1.8.0 + RegisterOGRILI2@Base 1.8.0 + RegisterOGRIdrisi@Base 1.9.0 + RegisterOGRJML@Base 2.0.1 + RegisterOGRKML@Base 1.8.0 + RegisterOGRLIBKML@Base 1.9.0 + RegisterOGRMEM@Base 1.8.0 + RegisterOGRMSSQLSpatial@Base 1.8.0 + RegisterOGRMVT@Base 2.3.0 + RegisterOGRMySQL@Base 1.8.0 + RegisterOGRNAS@Base 1.8.0 + RegisterOGRNGW@Base 2.4.0 + RegisterOGRNTF@Base 1.8.0 + RegisterOGRODBC@Base 1.8.0 + RegisterOGRODS@Base 1.10.1 + RegisterOGROGDI@Base 1.8.0 + RegisterOGROSM@Base 1.10.1 + RegisterOGROpenAir@Base 1.8.0 + RegisterOGROpenFileGDB@Base 1.11.0 + RegisterOGRPDS@Base 1.8.0 + RegisterOGRPG@Base 1.8.0 + RegisterOGRPGDump@Base 1.8.0 + RegisterOGRPGeo@Base 1.8.0 + RegisterOGRPLSCENES@Base 2.0.1 + RegisterOGRREC@Base 1.8.0 + RegisterOGRS57@Base 1.8.0 + RegisterOGRSDTS@Base 1.8.0 + RegisterOGRSEGUKOOA@Base 1.9.0 + RegisterOGRSEGY@Base 1.9.0 + RegisterOGRSOSI@Base 2.2.0 + RegisterOGRSQLite@Base 1.8.0 + RegisterOGRSUA@Base 1.8.0 + RegisterOGRSVG@Base 1.9.0 + RegisterOGRSXF@Base 1.11.0 + RegisterOGRSelafin@Base 2.0.1 + RegisterOGRShape@Base 1.8.0 + RegisterOGRTAB@Base 1.8.0 + RegisterOGRTiger@Base 1.8.0 + RegisterOGRTopoJSON@Base 2.3.0 + RegisterOGRVDV@Base 2.1.0 + RegisterOGRVFK@Base 1.8.0 + RegisterOGRVRT@Base 1.8.0 + RegisterOGRWAsP@Base 1.11.0 + RegisterOGRWFS3@Base 2.3.0 + RegisterOGRWFS@Base 1.8.0 + RegisterOGRWalk@Base 1.11.0 + RegisterOGRXLS@Base 1.9.0 + RegisterOGRXLSX@Base 1.10.1 + RegisterOGRXPlane@Base 1.8.0 + SetCSVFilenameHook@Base 1.8.0 + VRTAddBand@Base 1.8.0 + VRTAddComplexSource@Base 1.8.0 + VRTAddFuncSource@Base 1.8.0 + VRTAddSimpleSource@Base 1.8.0 + VRTCreate@Base 1.8.0 + VRTFlushCache@Base 1.8.0 + VRTSerializeToXML@Base 1.8.0 + VSICTime@Base 1.8.0 + VSICalloc@Base 1.8.0 + VSICallocVerbose@Base 2.1.0 + VSICleanupFileManager@Base 1.8.0 + VSICloseDir@Base 2.4.0 + VSICurlClearCache@Base 2.2.1 + VSICurlPartialClearCache@Base 2.4.0 + VSIError@Base 2.1.0 + VSIErrorReset@Base 2.1.0 + VSIFClose@Base 1.8.0 + VSIFCloseL@Base 1.8.0 + VSIFEof@Base 1.8.0 + VSIFEofL@Base 1.8.0 + VSIFFlush@Base 1.8.0 + VSIFFlushL@Base 1.8.0 + VSIFGetNativeFileDescriptorL@Base 1.11.0 + VSIFGetRangeStatusL@Base 2.2.0 + VSIFGetc@Base 1.8.0 + VSIFGets@Base 1.8.0 + VSIFOpen@Base 1.8.0 + VSIFOpenExL@Base 2.1.0 + VSIFOpenL@Base 1.8.0 + VSIFPrintf@Base 1.8.0 + VSIFPrintfL@Base 1.8.0 + VSIFPutc@Base 1.8.0 + VSIFPutcL@Base 1.8.0 + VSIFPuts@Base 1.8.0 + VSIFRead@Base 1.8.0 + VSIFReadL@Base 1.8.0 + VSIFReadMultiRangeL@Base 1.9.0 + VSIFSeek@Base 1.8.0 + VSIFSeekL@Base 1.8.0 + VSIFTell@Base 1.8.0 + VSIFTellL@Base 1.8.0 + VSIFTruncateL@Base 1.9.0 + VSIFWrite@Base 1.8.0 + VSIFWriteL@Base 1.8.0 + VSIFileFromMemBuffer@Base 1.8.0 + VSIFree@Base 1.8.0 + VSIFreeAligned@Base 2.2.0 + VSIGMTime@Base 1.8.0 + VSIGetActualURL@Base 2.3.0 + VSIGetDiskFreeSpace@Base 2.1.0 + VSIGetFileSystemOptions@Base 2.3.0 + VSIGetFileSystemsPrefixes@Base 2.3.0 + VSIGetLastErrorMsg@Base 2.1.0 + VSIGetLastErrorNo@Base 2.1.0 + VSIGetMemFileBuffer@Base 1.8.0 + VSIGetNextDirEntry@Base 2.4.0 + VSIGetSignedURL@Base 2.3.0 + VSIHasOptimizedReadMultiRange@Base 2.3.0 + VSIIngestFile@Base 1.11.0 + VSIInstallCryptFileHandler@Base 2.1.0 + VSIInstallLargeFileHandler@Base 1.8.0 + VSIInstallMemFileHandler@Base 1.8.0 + VSIInstallSparseFileHandler@Base 1.8.0 + VSIInstallSubFileHandler@Base 1.8.0 + VSIIsCaseSensitiveFS@Base 1.8.0 + VSILocalTime@Base 1.8.0 + VSIMalloc2@Base 1.8.0 + VSIMalloc2Verbose@Base 2.1.0 + VSIMalloc3@Base 1.8.0 + VSIMalloc3Verbose@Base 2.1.0 + VSIMalloc@Base 1.8.0 + VSIMallocAligned@Base 2.2.0 + VSIMallocAlignedAuto@Base 2.2.0 + VSIMallocAlignedAutoVerbose@Base 2.2.0 + VSIMallocVerbose@Base 2.1.0 + VSIMkdir@Base 1.8.0 + VSIMkdirRecursive@Base 2.3.0 + VSIOpenDir@Base 2.4.0 + VSIReadDir@Base 1.8.0 + VSIReadDirEx@Base 2.1.0 + VSIReadDirRecursive@Base 1.10.1 + VSIRealloc@Base 1.8.0 + VSIReallocVerbose@Base 2.1.0 + VSIRename@Base 1.8.0 + VSIRewind@Base 1.8.0 + VSIRewindL@Base 1.8.0 + VSIRmdir@Base 1.8.0 + VSIRmdirRecursive@Base 2.3.0 + VSISetCryptKey@Base 2.1.0 + VSIStat@Base 1.8.0 + VSIStatExL@Base 1.8.0 + VSIStatL@Base 1.8.0 + VSIStdoutSetRedirection@Base 2.0.1 + VSIStrdup@Base 1.8.0 + VSIStrdupVerbose@Base 2.1.0 + VSIStrerror@Base 1.8.0 + VSISupportsSparseFiles@Base 2.2.0 + VSISync@Base 2.4.0 + VSITime@Base 1.8.0 + VSIToCPLError@Base 2.1.0 + VSIUngetc@Base 1.8.0 + VSIUnlink@Base 1.8.0 + _CPLAssert@Base 1.8.0 + json_object_new_double_with_precision@Base 2.0.1 + json_object_new_double_with_significant_figures@Base 2.1.0 + lerc_computeCompressedSize@Base 2.4.0 + lerc_computeCompressedSizeForVersion@Base 2.4.0 + lerc_decode@Base 2.4.0 + lerc_decodeToDouble@Base 2.4.0 + lerc_encode@Base 2.4.0 + lerc_encodeForVersion@Base 2.4.0 + lerc_getBlobInfo@Base 2.4.0 + sqlite3_extension_init@Base 1.10.1 diff --git a/gdal/debian/libgdal20.symbols.hppa b/gdal/debian/libgdal20.symbols.hppa new file mode 100644 index 000000000000..3405353a83b4 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.hppa @@ -0,0 +1,3908 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.1 1 + (c++)"PamCleanProxyDB()@Base" 1.10.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry*, unsigned char**, int*)@Base" 1.10.1 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.1 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.1 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry*, unsigned char**, int*)@Base" 1.11.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"AIGDataset::GetFileList()@Base" 1.10.1 1 + (c++)"AIGDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"AIGDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"AIGDataset::TranslateColorTable(char const*)@Base" 1.10.1 1 + (c++)"AIGDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"AIGDataset::ReadRAT()@Base" 1.10.1 1 + (c++)"AIGDataset::AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 1.10.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADVariant const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADVariant const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::operator=(CADVariant const&)@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"MAPDataset::GetFileList()@Base" 1.10.1 1 + (c++)"MAPDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"MAPDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MAPDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"MAPDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"MAPDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"MAPDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MAPDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"MAPDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MAPDataset::MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"OGRFeature::IsFieldSet(int)@Base" 1.11.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.1 1 + (c++)"OGRFeature::IsFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetStyleTable()@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature*, int*, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsDouble(int)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsString(char const*)@Base" 2.2.0 1 + (c++)"OGRFeature::GetFieldAsString(int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*)@Base" 2.0.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsStringList(int)@Base" 1.11.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*)@Base" 2.0.1 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int)@Base" 2.2.0 1 + (c++)"OGRFeature::Clone()@Base" 1.10.1 1 + (c++)"OGRFeature::Equal(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature*, int*, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature*, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, char**)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, double*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::Validate(int, int)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRPolygon::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.0.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"TILDataset::GetFileList()@Base" 1.10.1 1 + (c++)"TILDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"TILDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"TILDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"TILDataset::TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::~TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::~TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::~TILDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.1 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::GetCoverage(int, int, int, int, int, int, int, int*, CPLHTTPResult**)@Base" 1.10.1 1 + (c++)"WCSDataset::GetFileList()@Base" 1.10.1 1 + (c++)"WCSDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"WCSDataset::ProcessError(CPLHTTPResult*)@Base" 1.10.1 1 + (c++)"WCSDataset::DirectRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"WCSDataset::GDALOpenResult(CPLHTTPResult*)@Base" 1.10.1 1 + (c++)"WCSDataset::TestUseBlockIO(int, int, int, int, int, int)@Base" 1.10.1 1 + (c++)"WCSDataset::ExtractGridInfo()@Base" 1.10.1 1 + (c++)"WCSDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"WCSDataset::DescribeCoverage()@Base" 1.10.1 1 + (c++)"WCSDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"WCSDataset::FlushMemoryResult()@Base" 1.10.1 1 + (c++)"WCSDataset::ExtractGridInfo100()@Base" 1.10.1 1 + (c++)"WCSDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"WCSDataset::EstablishRasterDetails()@Base" 1.10.1 1 + (c++)"WCSDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"WCSDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"WCSDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"WCSDataset::WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::CommonOpen(GDALOpenInfo*, GridFormat)@Base" 1.10.1 1 + (c++)"AAIGDataset::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"AAIGDataset::GetFileList()@Base" 1.10.1 1 + (c++)"AAIGDataset::ParseHeader(char const*, char const*)@Base" 1.10.1 1 + (c++)"AAIGDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"AAIGDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"AAIGDataset::Getc()@Base" 1.10.1 1 + (c++)"AAIGDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"AAIGDataset::Seek(unsigned long long)@Base" 1.10.1 1 + (c++)"AAIGDataset::Tell()@Base" 1.10.1 1 + (c++)"AAIGDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"AAIGDataset::AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.1 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Init(bool)@Base" 2.2.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 1.10.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 1.10.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 1.10.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 1.10.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 1.10.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 1.10.1 1 + (c++)"OGDIDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"OGDIDataset::AddSubDataset(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGDIDataset::CollectLayers(int, char***, char***)@Base" 1.10.1 1 + (c++)"OGDIDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"OGDIDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"OGDIDataset::OverrideGlobalInfo(OGDIDataset*, char const*)@Base" 1.10.1 1 + (c++)"OGDIDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"OGDIDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"OGDIDataset::OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 1.10.1 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::CastToIdentity(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void*)@Base" 2.2.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::importPreambuleFromWkb(unsigned char*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.1.0 1 + (c++)"OGRGeometry::importPreambuleFromWkt(char**, int*, int*, bool*)@Base" 2.1.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.0.1 1 + (c++)"OGRGeometry::importPreambuleOfCollectionFromWkb(unsigned char*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char**, char**, int, int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**, int, int*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char**)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char**)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::Initialize()@Base" 1.10.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::Sort()@Base" 1.10.1 1 + (c++)"CPLStringList::Clear()@Base" 1.10.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::StealList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char*, int)@Base" 1.10.1 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.1 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char**, int, int)@Base" 1.10.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.10.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::Init(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetFieldCount()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::Clone()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn*)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetName()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double*, double*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint*, double*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint*, double*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double*, double*, double*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double*, double*, double*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.1 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::RasterIO(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::RasterIO(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, int, int, double, double)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, int, int, double, double)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, int*, int*, double*)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, json_object*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, json_object*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::StealJSon()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char*, int, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importPreambuleFromWkb(OGRGeometry*, unsigned char*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromWkb(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char**, OGRSpatialReference*, OGRGeometry**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char**)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"OGRGenSQLResultsLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::ClearFilters()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::GetLayerDefn()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ResetReading()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::GetNextFeature()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::PrepareSummary()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::TestCapability(char const*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::FreeIndexFields(OGRField*, unsigned int, bool)@Base" 2.2.0 1 + (c++)"OGRGenSQLResultsLayer::GetFeatureCount(int)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ReadIndexFields(OGRFeature*, int, OGRField*)@Base" 2.2.0 1 + (c++)"OGRGenSQLResultsLayer::GetSpatialFilter()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::SortIndexSection(OGRField const*, long long*, unsigned int, unsigned int)@Base" 2.2.0 1 + (c++)"OGRGenSQLResultsLayer::TranslateFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::AddFieldDefnToSet(int, int, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::CreateOrderByIndex()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetAttributeFilter(char const*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ApplyFiltersToSource()@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::InvalidateOrderByIndex()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ContainGeomSpecialField(swq_expr_node*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::FindAndSetIgnoredFields()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ExploreExprForIgnoredFields(swq_expr_node*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::MustEvaluateSpatialFilterOnGenSQL()@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::Compare(OGRField const*, OGRField const*)@Base" 2.2.0 1 + (c++)"OGRGenSQLResultsLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::OGRGenSQLResultsLayer(GDALDataset*, void*, OGRGeometry*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::OGRGenSQLResultsLayer(GDALDataset*, void*, OGRGeometry*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char*, int, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char**, int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::Init()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.1 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.1 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.10.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRPoint::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRPoint::empty()@Base" 1.10.1 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.1 1 + (c++)"CPLString::tolower()@Base" 1.10.1 1 + (c++)"CPLString::toupper()@Base" 1.10.1 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 1.10.1 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::Open(int)@Base" 1.10.1 1 + (c++)"S57Reader::Close()@Base" 1.10.1 1 + (c++)"S57Reader::Ingest()@Base" 1.10.1 1 + (c++)"S57Reader::Rewind()@Base" 1.10.1 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::Close()@Base" 1.10.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int)@Base" 2.0.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int)@Base" 2.0.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, void*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.1 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::PointOnSurface(OGRPoint*) const@Base" 1.10.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.1 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::Count() const@Base" 1.10.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.1 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.1 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.1 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.1 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPoint::clone() const@Base" 1.10.1 1 + (c++)"OGRPoint::Equals(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.1 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.10.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 1.10.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 1.10.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"std::pair* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::pair*>(__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::pair*)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, int, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"void std::deque >::_M_push_back_aux(OGRFeature* const&)@Base" 2.1.1 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.2 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > std::vector, std::allocator > >::insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, void>(__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::vector, std::allocator > >::_M_fill_assign(unsigned int, std::pair const&)@Base" 2.1.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.10.1 1 + (c++)"std::vector >::push_back(double const&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 2.0.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::pair&&, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_insert_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for AIGDataset@Base" 1.10.1 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo for MAPDataset@Base" 1.10.1 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo for TILDataset@Base" 1.10.1 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo for WCSDataset@Base" 1.10.1 1 + (c++)"typeinfo for AAIGDataset@Base" 1.10.1 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo for IILI1Reader@Base" 1.10.1 1 + (c++)"typeinfo for IILI2Reader@Base" 1.10.1 1 + (c++)"typeinfo for OGDIDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo for OGRGenSQLResultsLayer@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for AIGDataset@Base" 1.10.1 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo name for MAPDataset@Base" 1.10.1 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo name for TILDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo name for WCSDataset@Base" 1.10.1 1 + (c++)"typeinfo name for AAIGDataset@Base" 1.10.1 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo name for IILI1Reader@Base" 1.10.1 1 + (c++)"typeinfo name for IILI2Reader@Base" 1.10.1 1 + (c++)"typeinfo name for OGDIDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGenSQLResultsLayer@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"vtable for AIGDataset@Base" 1.10.1 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.1 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.1 1 + (c++)"vtable for MAPDataset@Base" 1.10.1 1 + (c++)"vtable for MEMDataset@Base" 1.10.1 1 + (c++)"vtable for OGRFeature@Base" 1.10.1 1 + (c++)"vtable for OGRPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRSurface@Base" 1.10.1 1 + (c++)"vtable for RawDataset@Base" 1.10.1 1 + (c++)"vtable for TILDataset@Base" 1.10.1 1 + (c++)"vtable for VRTDataset@Base" 1.10.1 1 + (c++)"vtable for WCSDataset@Base" 1.10.1 1 + (c++)"vtable for AAIGDataset@Base" 1.10.1 1 + (c++)"vtable for GDALDataset@Base" 1.10.1 1 + (c++)"vtable for IILI1Reader@Base" 1.10.1 1 + (c++)"vtable for IILI2Reader@Base" 1.10.1 1 + (c++)"vtable for OGDIDataset@Base" 1.10.1 1 + (c++)"vtable for OGRGeometry@Base" 1.10.1 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.1 1 + (c++)"vtable for OGRStylePen@Base" 1.10.1 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.1 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRDataSource@Base" 1.10.1 1 + (c++)"vtable for OGRLineString@Base" 1.10.1 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.1 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.1 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.1 1 + (c++)"vtable for RawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.1 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRGenSQLResultsLayer@Base" 1.10.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.1 1 + (c++)"vtable for OGRLayer@Base" 1.10.1 1 + (c++)"vtable for OGRPoint@Base" 1.10.1 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 diff --git a/gdal/debian/libgdal20.symbols.hurd-i386 b/gdal/debian/libgdal20.symbols.hurd-i386 new file mode 100644 index 000000000000..4575d6e54cc3 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.hurd-i386 @@ -0,0 +1,3844 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.1 1 + (c++)"GetVersion()@Base" 2.2.1 1 + (c++)"CPLOvPrintf(char const*, char*)@Base" 2.2.1 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.1 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.1 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.1 1 + (c++)"GetCADFormats()@Base" 2.2.1 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.1 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.1 1 + (c++)"PamCleanProxyDB()@Base" 1.10.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.1 1 + (c++)"GetLastErrorCode()@Base" 2.2.1 1 + (c++)"GetVersionString()@Base" 2.2.1 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry*, unsigned char**, int*)@Base" 1.10.1 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.1 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.1 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.1 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.1 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.1 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.1 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry*, unsigned char**, int*)@Base" 1.11.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.1 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"AIGDataset::GetFileList()@Base" 1.10.1 1 + (c++)"AIGDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"AIGDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"AIGDataset::TranslateColorTable(char const*)@Base" 1.10.1 1 + (c++)"AIGDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"AIGDataset::ReadRAT()@Base" 1.10.1 1 + (c++)"AIGDataset::AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 1.10.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 1.10.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADVariant const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(long)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADVariant const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(long)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::operator=(CADVariant const&)@Base" 2.2.1 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.1 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.1 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"MAPDataset::GetFileList()@Base" 1.10.1 1 + (c++)"MAPDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"MAPDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MAPDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"MAPDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"MAPDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"MAPDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MAPDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"MAPDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MAPDataset::MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 1.10.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"OGRFeature::IsFieldSet(int)@Base" 1.11.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.1 1 + (c++)"OGRFeature::IsFieldNull(int)@Base" 2.2.1 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetStyleTable()@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature*, int*, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsDouble(int)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsString(char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsString(int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*)@Base" 2.0.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsStringList(int)@Base" 1.11.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*)@Base" 2.0.1 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int)@Base" 2.2.1 1 + (c++)"OGRFeature::Clone()@Base" 1.10.1 1 + (c++)"OGRFeature::Equal(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature*, int*, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature*, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, char**)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, double*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, int*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::Validate(int, int)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRPolygon::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.0.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"TILDataset::GetFileList()@Base" 1.10.1 1 + (c++)"TILDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"TILDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"TILDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"TILDataset::TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::~TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::~TILDataset()@Base" 1.10.1 1 + (c++)"TILDataset::~TILDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.1 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::GetCoverage(int, int, int, int, int, int, int, int*, CPLHTTPResult**)@Base" 1.10.1 1 + (c++)"WCSDataset::GetFileList()@Base" 1.10.1 1 + (c++)"WCSDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"WCSDataset::ProcessError(CPLHTTPResult*)@Base" 1.10.1 1 + (c++)"WCSDataset::DirectRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"WCSDataset::GDALOpenResult(CPLHTTPResult*)@Base" 1.10.1 1 + (c++)"WCSDataset::TestUseBlockIO(int, int, int, int, int, int)@Base" 1.10.1 1 + (c++)"WCSDataset::ExtractGridInfo()@Base" 1.10.1 1 + (c++)"WCSDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"WCSDataset::DescribeCoverage()@Base" 1.10.1 1 + (c++)"WCSDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"WCSDataset::FlushMemoryResult()@Base" 1.10.1 1 + (c++)"WCSDataset::ExtractGridInfo100()@Base" 1.10.1 1 + (c++)"WCSDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"WCSDataset::EstablishRasterDetails()@Base" 1.10.1 1 + (c++)"WCSDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"WCSDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"WCSDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"WCSDataset::WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 1.10.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::CommonOpen(GDALOpenInfo*, GridFormat)@Base" 1.10.1 1 + (c++)"AAIGDataset::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"AAIGDataset::GetFileList()@Base" 1.10.1 1 + (c++)"AAIGDataset::ParseHeader(char const*, char const*)@Base" 1.10.1 1 + (c++)"AAIGDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"AAIGDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"AAIGDataset::Getc()@Base" 1.10.1 1 + (c++)"AAIGDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"AAIGDataset::Seek(unsigned long long)@Base" 1.10.1 1 + (c++)"AAIGDataset::Tell()@Base" 1.10.1 1 + (c++)"AAIGDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"AAIGDataset::AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 1.10.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.1 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.1 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.1 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Init(bool)@Base" 2.2.1 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 1.10.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 1.10.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 1.10.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 1.10.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 1.10.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 1.10.1 1 + (c++)"OGDIDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"OGDIDataset::AddSubDataset(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGDIDataset::CollectLayers(int, char***, char***)@Base" 1.10.1 1 + (c++)"OGDIDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"OGDIDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"OGDIDataset::OverrideGlobalInfo(OGDIDataset*, char const*)@Base" 1.10.1 1 + (c++)"OGDIDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"OGDIDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"OGDIDataset::OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 1.10.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 1.10.1 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::CastToIdentity(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void*)@Base" 2.2.1 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::importPreambuleFromWkb(unsigned char*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.1.0 1 + (c++)"OGRGeometry::importPreambuleFromWkt(char**, int*, int*, bool*)@Base" 2.1.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.0.1 1 + (c++)"OGRGeometry::importPreambuleOfCollectionFromWkb(unsigned char*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRTriangle::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRTriangle::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char**, char**, int, int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**, int, int*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char**)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char**)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.1 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.1 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::Initialize()@Base" 1.10.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::Sort()@Base" 1.10.1 1 + (c++)"CPLStringList::Clear()@Base" 1.10.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::StealList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char*, int)@Base" 1.10.1 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.1 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char**, int, int)@Base" 1.10.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.10.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::Init(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetFieldCount()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::Clone()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn*)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetName()@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double*, double*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint*, double*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint*, double*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double*, double*, double*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double*, double*, double*, double*)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.1 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::RasterIO(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::RasterIO(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.1 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, int, int, double, double)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, int, int, double, double)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, int*, int*, double*)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, json_object*)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, json_object*)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::StealJSon()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char*, int, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importPreambuleFromWkb(OGRGeometry*, unsigned char*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromWkb(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char**, OGRSpatialReference*, OGRGeometry**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"OGRGenSQLResultsLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::ClearFilters()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::GetLayerDefn()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ResetReading()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::GetNextFeature()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::PrepareSummary()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::TestCapability(char const*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::FreeIndexFields(OGRField*, unsigned int, bool)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetFeatureCount(int)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ReadIndexFields(OGRFeature*, int, OGRField*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetSpatialFilter()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::SortIndexSection(OGRField const*, long long*, unsigned int, unsigned int)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::TranslateFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::AddFieldDefnToSet(int, int, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::CreateOrderByIndex()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::SetAttributeFilter(char const*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ApplyFiltersToSource()@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::InvalidateOrderByIndex()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ContainGeomSpecialField(swq_expr_node*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::FindAndSetIgnoredFields()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::ExploreExprForIgnoredFields(swq_expr_node*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::MustEvaluateSpatialFilterOnGenSQL()@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::Compare(OGRField const*, OGRField const*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRGenSQLResultsLayer::OGRGenSQLResultsLayer(GDALDataset*, void*, OGRGeometry*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::OGRGenSQLResultsLayer(GDALDataset*, void*, OGRGeometry*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 1.10.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char*, int, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char**, int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::Init()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.1 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.1 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.1 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.1 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.1 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.1 1 + (c++)"CADFile::~CADFile()@Base" 2.2.1 1 + (c++)"CADFile::~CADFile()@Base" 2.2.1 1 + (c++)"CADFile::~CADFile()@Base" 2.2.1 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.1 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.1 1 + (c++)"CADClass::CADClass()@Base" 2.2.1 1 + (c++)"CADClass::CADClass()@Base" 2.2.1 1 + (c++)"CADClass::~CADClass()@Base" 2.2.1 1 + (c++)"CADClass::~CADClass()@Base" 2.2.1 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.1 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.1 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.1 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.1 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.1 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.1 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.1 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.1 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.1 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.1 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.1 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.1 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.1 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.1 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.1 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.1 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.1 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.1 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.1 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.1 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.1 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.1 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.1 1 + (c++)"GNMGraph::Clear()@Base" 2.2.1 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.1 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.1 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.1 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.1 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.10.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.0.1 1 + (c++)"OGRPoint::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRPoint::empty()@Base" 1.10.1 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.1 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.1 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.1 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.1 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.1 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.1 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.1 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.1 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.1 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.1 1 + (c++)"CADTables::CADTables()@Base" 2.2.1 1 + (c++)"CADTables::CADTables()@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.1 1 + (c++)"CPLString::Trim()@Base" 1.10.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.1 1 + (c++)"CPLString::tolower()@Base" 1.10.1 1 + (c++)"CPLString::toupper()@Base" 1.10.1 1 + (c++)"CPLString::vPrintf(char const*, char*)@Base" 1.10.1 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::Open(int)@Base" 1.10.1 1 + (c++)"S57Reader::Close()@Base" 1.10.1 1 + (c++)"S57Reader::Ingest()@Base" 1.10.1 1 + (c++)"S57Reader::Rewind()@Base" 1.10.1 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::Close()@Base" 1.10.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int)@Base" 2.0.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int)@Base" 2.0.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, char*), unsigned int, char const*, ...)@Base" 2.2.1 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.1 1 + (c++)"CADClasses::print() const@Base" 2.2.1 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.1 1 + (c++)"CADVariant::getX() const@Base" 2.2.1 1 + (c++)"CADVariant::getY() const@Base" 2.2.1 1 + (c++)"CADVariant::getZ() const@Base" 2.2.1 1 + (c++)"CADVariant::getReal() const@Base" 2.2.1 1 + (c++)"CADVariant::getType() const@Base" 2.2.1 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.1 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.1 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.1 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.1 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.1 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.1 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::PointOnSurface(OGRPoint*) const@Base" 1.10.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.1 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.1 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.1 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.1 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.1 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::Count() const@Base" 1.10.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.1 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.1 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.1 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.1 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.1 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.1 1 + (c++)"CADFile::getHeader() const@Base" 2.2.1 1 + (c++)"CADFile::getTables() const@Base" 2.2.1 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.1 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.1 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.1 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.1 1 + (c++)"GNMRule::c_str() const@Base" 2.2.1 1 + (c++)"GNMRule::GetType() const@Base" 2.2.1 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.1 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.1 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.1 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.1 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.1 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.1 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.1 1 + (c++)"CADLayer::getId() const@Base" 2.2.1 1 + (c++)"CADLayer::getOn() const@Base" 2.2.1 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.1 1 + (c++)"CADLayer::getColor() const@Base" 2.2.1 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.1 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.1 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.1 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.1 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.1 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.1 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.1 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.1 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPoint::clone() const@Base" 1.10.1 1 + (c++)"OGRPoint::Equals(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.1 1 + (c++)"CADHandle::isNull() const@Base" 2.2.1 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.1 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.1 1 + (c++)"CADHeader::print() const@Base" 2.2.1 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.1 1 + (c++)"CADHeader::getSize() const@Base" 2.2.1 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.1 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.1 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.10.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.1 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.1 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant)@Base" 2.2.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 1.10.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 1.10.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.1 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, int, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.1 1 + (c++)"std::map, char*, std::less >, std::allocator const, char*> > >::operator[](std::pair const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"void std::deque >::_M_push_back_aux(OGRFeature* const&)@Base" 2.1.1 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > std::vector, std::allocator > >::insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, void>(__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::vector, std::allocator > >::_M_fill_assign(unsigned int, std::pair const&)@Base" 2.1.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.10.1 1 + (c++)"std::vector >::push_back(double const&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::pair&&, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_insert_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for AIGDataset@Base" 1.10.1 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.1 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.1 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo for MAPDataset@Base" 1.10.1 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo for TILDataset@Base" 1.10.1 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo for WCSDataset@Base" 1.10.1 1 + (c++)"typeinfo for AAIGDataset@Base" 1.10.1 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo for IILI1Reader@Base" 1.10.1 1 + (c++)"typeinfo for IILI2Reader@Base" 1.10.1 1 + (c++)"typeinfo for OGDIDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.1 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.1 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.1 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.1 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo for OGRGenSQLResultsLayer@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.1 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.1 1 + (c++)"typeinfo for GNMRule@Base" 2.2.1 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.1 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"typeinfo name for AIGDataset@Base" 1.10.1 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.1 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.1 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo name for MAPDataset@Base" 1.10.1 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo name for TILDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo name for WCSDataset@Base" 1.10.1 1 + (c++)"typeinfo name for AAIGDataset@Base" 1.10.1 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo name for IILI1Reader@Base" 1.10.1 1 + (c++)"typeinfo name for IILI2Reader@Base" 1.10.1 1 + (c++)"typeinfo name for OGDIDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.1 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.1 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.1 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.1 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGenSQLResultsLayer@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.1 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.1 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.1 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.1 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"vtable for AIGDataset@Base" 1.10.1 1 + (c++)"vtable for CADXRecord@Base" 2.2.1 1 + (c++)"vtable for GDALDriver@Base" 1.10.1 1 + (c++)"vtable for GNMNetwork@Base" 2.2.1 1 + (c++)"vtable for IGMLReader@Base" 1.10.1 1 + (c++)"vtable for MAPDataset@Base" 1.10.1 1 + (c++)"vtable for MEMDataset@Base" 1.10.1 1 + (c++)"vtable for OGRFeature@Base" 1.10.1 1 + (c++)"vtable for OGRPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRSurface@Base" 1.10.1 1 + (c++)"vtable for RawDataset@Base" 1.10.1 1 + (c++)"vtable for TILDataset@Base" 1.10.1 1 + (c++)"vtable for VRTDataset@Base" 1.10.1 1 + (c++)"vtable for WCSDataset@Base" 1.10.1 1 + (c++)"vtable for AAIGDataset@Base" 1.10.1 1 + (c++)"vtable for GDALDataset@Base" 1.10.1 1 + (c++)"vtable for IILI1Reader@Base" 1.10.1 1 + (c++)"vtable for IILI2Reader@Base" 1.10.1 1 + (c++)"vtable for OGDIDataset@Base" 1.10.1 1 + (c++)"vtable for OGRGeometry@Base" 1.10.1 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.1 1 + (c++)"vtable for OGRStylePen@Base" 1.10.1 1 + (c++)"vtable for OGRTriangle@Base" 2.2.1 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.1 1 + (c++)"vtable for CADDictionary@Base" 2.2.1 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRDataSource@Base" 1.10.1 1 + (c++)"vtable for OGRLineString@Base" 1.10.1 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.1 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.1 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.1 1 + (c++)"vtable for RawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.1 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.1 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.1 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRGenSQLResultsLayer@Base" 1.10.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.1 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADFile@Base" 2.2.1 1 + (c++)"vtable for GNMRule@Base" 2.2.1 1 + (c++)"vtable for GNMGraph@Base" 2.2.1 1 + (c++)"vtable for OGRCurve@Base" 1.10.1 1 + (c++)"vtable for OGRLayer@Base" 1.10.1 1 + (c++)"vtable for OGRPoint@Base" 1.10.1 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 diff --git a/gdal/debian/libgdal20.symbols.i386 b/gdal/debian/libgdal20.symbols.i386 new file mode 100644 index 000000000000..dc38d654b930 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.i386 @@ -0,0 +1,4713 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, char*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.9.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.9.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.9.0 1 + (c++)"PamCleanProxyDB()@Base" 1.9.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.9.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.9.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.9.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.9.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.9.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.9.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.9.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.9.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.9.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.9.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.9.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.9.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.9.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.9.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.9.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.9.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.9.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.9.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.9.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.9.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.9.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.9.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.9.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.9.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.9.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.9.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.9.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.9.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.9.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.9.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.9.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.9.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.9.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.9.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.9.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.9.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.9.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.9.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.9.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.9.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.9.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.9.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.9.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.9.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.9.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.9.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRPoint::empty()@Base" 1.9.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.9.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.9.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.9.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, char*)@Base" 1.9.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.9.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.9.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.9.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::Open(int)@Base" 1.9.0 1 + (c++)"S57Reader::Close()@Base" 1.9.0 1 + (c++)"S57Reader::Ingest()@Base" 1.9.0 1 + (c++)"S57Reader::Rewind()@Base" 1.9.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.9.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.9.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.9.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.9.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::Close()@Base" 1.9.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, char*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.9.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.9.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.9.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.9.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.9.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.9.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.9.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.9.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.9.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.9.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPoint::clone() const@Base" 1.9.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.9.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.9.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.9.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.9.0 1 + (c++)"vtable for MEMDataset@Base" 1.9.0 1 + (c++)"vtable for OGRFeature@Base" 1.9.0 1 + (c++)"vtable for OGRPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRSurface@Base" 1.9.0 1 + (c++)"vtable for RawDataset@Base" 1.9.0 1 + (c++)"vtable for VRTDataset@Base" 1.9.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.9.0 1 + (c++)"vtable for OGRGeometry@Base" 1.9.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.9.0 1 + (c++)"vtable for OGRStylePen@Base" 1.9.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.9.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRDataSource@Base" 1.9.0 1 + (c++)"vtable for OGRLineString@Base" 1.9.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.9.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.9.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.9.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.9.0 1 + (c++)"vtable for RawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.9.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.9.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.9.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.9.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.9.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.9.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.9.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.9.0 1 + (c++)"vtable for OGRLayer@Base" 1.9.0 1 + (c++)"vtable for OGRPoint@Base" 1.9.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.ia64 b/gdal/debian/libgdal20.symbols.ia64 new file mode 100644 index 000000000000..0a2a0571e188 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.ia64 @@ -0,0 +1,4692 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.3.1 1 + (c++)"GetVersion()@Base" 2.3.1 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.3.1 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.3.1 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.3.1 1 + (c++)"PamGetProxy(char const*)@Base" 2.3.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.3.1 1 + (c++)"GetCADFormats()@Base" 2.3.1 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 2.3.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.3.1 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.3.1 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 2.3.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 2.3.1 1 + (c++)"PamCleanProxyDB()@Base" 2.3.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.3.1 1 + (c++)"GetLastErrorCode()@Base" 2.3.1 1 + (c++)"GetVersionString()@Base" 2.3.1 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 2.3.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 2.3.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.3.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.3.1 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.3.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 2.3.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.3.1 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.1 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 2.3.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 2.3.1 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.1 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 2.3.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.3.1 1 + (c++)"OGRInitializeXerces()@Base" 2.3.1 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.3.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 2.3.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.3.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 2.3.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.3.1 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.3.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 2.3.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 2.3.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.3.1 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.3.1 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.3.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.3.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.3.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.3.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.3.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.1 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 2.3.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.1 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 2.3.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.3.1 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 2.3.1 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.1 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 2.3.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 2.3.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 2.3.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 2.3.1 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.1 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.3.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.3.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.1 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 2.3.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.3.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.3.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.1 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.1 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.3.1 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 2.3.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.3.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.3.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.3.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.3.1 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.1 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.1 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.1 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.1 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.3.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.3.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.3.1 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.3.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.3.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.3.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.3.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.3.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.3.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 2.3.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 2.3.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 2.3.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.3.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.3.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 2.3.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 2.3.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 2.3.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 2.3.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 2.3.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.3.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.3.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.3.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.3.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.3.1 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.3.1 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 2.3.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 2.3.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.3.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.3.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.3.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.1 1 + (c++)"OGRFeature::UnsetField(int)@Base" 2.3.1 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.1 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 2.3.1 1 + (c++)"OGRFeature::StealGeometry()@Base" 2.3.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 2.3.1 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.3.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.3.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.3.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.1 1 + (c++)"OGRPolygon::closeRings()@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 2.3.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 2.3.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 2.3.1 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 2.3.1 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.3.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.3.1 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.3.1 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.1 1 + (c++)"VRTDataset::FlushCache()@Base" 2.3.1 1 + (c++)"VRTDataset::GetFileList()@Base" 2.3.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.3.1 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 2.3.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 2.3.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.3.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 2.3.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.1 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.3.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.3.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.3.1 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.1 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.1 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.3.1 1 + (c++)"GDALDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.3.1 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.3.1 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.3.1 1 + (c++)"GDALDataset::Dereference()@Base" 2.3.1 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.1 1 + (c++)"GDALDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 2.3.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.3.1 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 2.3.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.3.1 1 + (c++)"GDALDataset::ResetReading()@Base" 2.3.1 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.3.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.3.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 2.3.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterCount()@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 2.3.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.3.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 2.3.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 2.3.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.3.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.3.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.3.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.3.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.3.1 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.3.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 2.3.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.3.1 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.3.1 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.3.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.3.1 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALDataset::Init(bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.1 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALDataset::Release()@Base" 2.3.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.3.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::GetDriver()@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.1 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::Reference()@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.3.1 1 + (c++)"OGRGeometry::closeRings()@Base" 2.3.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.1 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.1 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 2.3.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.3.1 1 + (c++)"OGRGeometry::swapXY()@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.3.1 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 2.3.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 2.3.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.3.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.3.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.3.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.3.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 2.3.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 2.3.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 2.3.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 2.3.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 2.3.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStylePen::Parse()@Base" 2.3.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.1 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.3.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.3.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.3.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.3.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetType()@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.3.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.3.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.3.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.3.1 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.3.1 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.3.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.3.1 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.1 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.1 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.3.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.3.1 1 + (c++)"CPLStringList::Initialize()@Base" 2.3.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 2.3.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 2.3.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 2.3.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 2.3.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::Sort()@Base" 2.3.1 1 + (c++)"CPLStringList::Clear()@Base" 2.3.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 2.3.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::StealList()@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 2.3.1 1 + (c++)"CPLStringList::operator[](int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.3.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.3.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.3.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 2.3.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.3.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.3.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.3.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.3.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::closeRings()@Base" 2.3.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 2.3.1 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 2.3.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 2.3.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 2.3.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::Clear()@Base" 2.3.1 1 + (c++)"OGRStyleTable::Clone()@Base" 2.3.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.3.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.3.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.3.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.3.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 2.3.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"RawRasterBand::Initialize()@Base" 2.3.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.3.1 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 2.3.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 2.3.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 2.3.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.3.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.3.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 2.3.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.3.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.3.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 2.3.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 2.3.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.3.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 2.3.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 2.3.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.3.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.3.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.3.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.3.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 2.3.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 2.3.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 2.3.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.3.1 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 2.3.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.3.1 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::Init(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 2.3.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::Release()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 2.3.1 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.1 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.3.1 1 + (c++)"VSIFileManager::Get()@Base" 2.3.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.3.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.3.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.3.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 2.3.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Internalize()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Touch()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Write()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetName()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetType()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.3.1 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.3.1 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.3.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.3.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.3.1 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.3.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.3.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.3.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.3.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetType()@Base" 2.3.1 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::Flush()@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 2.3.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 2.3.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 2.3.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 2.3.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 2.3.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 2.3.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Release()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::Init()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.3.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.3.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.3.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.3.1 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.3.1 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.3.1 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.3.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.3.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.3.1 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.3.1 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.1 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.1 1 + (c++)"CADArc::CADArc()@Base" 2.3.1 1 + (c++)"CADArc::CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADRay::CADRay()@Base" 2.3.1 1 + (c++)"CADRay::CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.3.1 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.3.1 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.3.1 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.3.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.3.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.3.1 1 + (c++)"CADFile::~CADFile()@Base" 2.3.1 1 + (c++)"CADFile::~CADFile()@Base" 2.3.1 1 + (c++)"CADFile::~CADFile()@Base" 2.3.1 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine()@Base" 2.3.1 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.1 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.1 1 + (c++)"CADText::setHeight(double)@Base" 2.3.1 1 + (c++)"CADText::CADText()@Base" 2.3.1 1 + (c++)"CADText::CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.3.1 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.3.1 1 + (c++)"CADClass::CADClass()@Base" 2.3.1 1 + (c++)"CADClass::CADClass()@Base" 2.3.1 1 + (c++)"CADClass::~CADClass()@Base" 2.3.1 1 + (c++)"CADClass::~CADClass()@Base" 2.3.1 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.1 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.1 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.1 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.1 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.1 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADImage::CADImage()@Base" 2.3.1 1 + (c++)"CADImage::CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.3.1 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.3.1 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.3.1 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.3.1 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.3.1 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.3.1 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.3.1 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.3.1 1 + (c++)"CADLayer::setOn(bool)@Base" 2.3.1 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.3.1 1 + (c++)"CADLayer::setColor(short)@Base" 2.3.1 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.3.1 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.3.1 1 + (c++)"CADLayer::setHandle(long)@Base" 2.3.1 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.3.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.3.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.3.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.3.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.3.1 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.1 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.1 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.1 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.1 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.1 1 + (c++)"CADMText::CADMText()@Base" 2.3.1 1 + (c++)"CADMText::CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADSolid::getCorners()@Base" 2.3.1 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.1 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.3.1 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.3.1 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.3.1 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.3.1 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.3.1 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.3.1 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.3.1 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.3.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.3.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.3.1 1 + (c++)"GNMGraph::Clear()@Base" 2.3.1 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.3.1 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.3.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.3.1 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGRLayer::Dereference()@Base" 2.3.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 2.3.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 2.3.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 2.3.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 2.3.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::StartTransaction()@Base" 2.3.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 2.3.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 2.3.1 1 + (c++)"OGRLayer::end()@Base" 2.3.1 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.1 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::GetName()@Base" 2.3.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::Reference()@Base" 2.3.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.3.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRPoint::empty()@Base" 2.3.1 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPoint::swapXY()@Base" 2.3.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.3.1 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.1 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.1 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.1 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.1 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.1 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.1 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFileIO::Close()@Base" 2.3.1 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.1 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.3.1 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.3.1 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.3.1 1 + (c++)"CADHeader::getValueName(short)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.3.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.3.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.3.1 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.1 1 + (c++)"CADObject::setSize(long)@Base" 2.3.1 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.1 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.1 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.1 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.1 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.1 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.1 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.1 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.1 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.1 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.1 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.3.1 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.3.1 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.3.1 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.3.1 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.3.1 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.3.1 1 + (c++)"CADTables::CADTables()@Base" 2.3.1 1 + (c++)"CADTables::CADTables()@Base" 2.3.1 1 + (c++)"CADVector::setX(double)@Base" 2.3.1 1 + (c++)"CADVector::setY(double)@Base" 2.3.1 1 + (c++)"CADVector::setZ(double)@Base" 2.3.1 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector()@Base" 2.3.1 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector()@Base" 2.3.1 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.3.1 1 + (c++)"CPLString::Trim()@Base" 2.3.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 2.3.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 2.3.1 1 + (c++)"CPLString::tolower()@Base" 2.3.1 1 + (c++)"CPLString::toupper()@Base" 2.3.1 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 2.3.1 1 + (c++)"CPLString::~CPLString()@Base" 2.3.1 1 + (c++)"CPLString::~CPLString()@Base" 2.3.1 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 2.3.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 2.3.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 2.3.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 2.3.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 2.3.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.3.1 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 2.3.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 2.3.1 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 2.3.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 2.3.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 2.3.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 2.3.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::Open(int)@Base" 2.3.1 1 + (c++)"S57Reader::Close()@Base" 2.3.1 1 + (c++)"S57Reader::Ingest()@Base" 2.3.1 1 + (c++)"S57Reader::Rewind()@Base" 2.3.1 1 + (c++)"S57Reader::ReadDSID()@Base" 2.3.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 2.3.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 2.3.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 2.3.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.3.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.3.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.3.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.3.1 1 + (c++)"S57Writer::MakeRecord()@Base" 2.3.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 2.3.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.3.1 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 2.3.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Writer::Close()@Base" 2.3.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int)@Base" 2.3.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int)@Base" 2.3.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.3.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.3.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.3.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.3.1 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTSource::IsSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.3.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.3.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, void*), unsigned long, char const*, ...)@Base" 2.3.1 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.3.1 1 + (c++)"CADClasses::print() const@Base" 2.3.1 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.1 1 + (c++)"CADEllipse::print() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.1 1 + (c++)"CADPoint3D::print() const@Base" 2.3.1 1 + (c++)"CADVariant::getDecimal() const@Base" 2.3.1 1 + (c++)"CADVariant::getX() const@Base" 2.3.1 1 + (c++)"CADVariant::getY() const@Base" 2.3.1 1 + (c++)"CADVariant::getZ() const@Base" 2.3.1 1 + (c++)"CADVariant::getReal() const@Base" 2.3.1 1 + (c++)"CADVariant::getType() const@Base" 2.3.1 1 + (c++)"CADVariant::getHandle() const@Base" 2.3.1 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 2.3.1 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.3.1 1 + (c++)"GNMNetwork::GetName() const@Base" 2.3.1 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 2.3.1 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::end() const@Base" 2.3.1 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.1 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::begin() const@Base" 2.3.1 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.1 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 2.3.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 2.3.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.3.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.3.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.1 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.1 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.1 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADGeometry::getType() const@Base" 2.3.1 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.1 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.3.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::GetShared() const@Base" 2.3.1 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 2.3.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToJson() const@Base" 2.3.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 2.3.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.3.1 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 2.3.1 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.3.1 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.3.1 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 2.3.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 2.3.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.3.1 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 2.3.1 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.1 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.1 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.3.1 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.3.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.3.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 2.3.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.1 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.1 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 2.3.1 1 + (c++)"CPLStringList::Count() const@Base" 2.3.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.3.1 1 + (c++)"CPLStringList::operator[](int) const@Base" 2.3.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.3.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRLineString::get_Area() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::clone() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 2.3.1 1 + (c++)"GDALColorTable::Clone() const@Base" 2.3.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.1 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.1 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.1 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.3.1 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.3.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.3.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.3.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.3.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.3.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Clone() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 2.3.1 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.1 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 2.3.1 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.1 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.1 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.1 1 + (c++)"CADArc::print() const@Base" 2.3.1 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.1 1 + (c++)"CADRay::print() const@Base" 2.3.1 1 + (c++)"CADFile::getClasses() const@Base" 2.3.1 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.3.1 1 + (c++)"CADFile::getHeader() const@Base" 2.3.1 1 + (c++)"CADFile::getTables() const@Base" 2.3.1 1 + (c++)"CADLine::print() const@Base" 2.3.1 1 + (c++)"CADLine::getEnd() const@Base" 2.3.1 1 + (c++)"CADLine::getStart() const@Base" 2.3.1 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.1 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.1 1 + (c++)"CADText::print() const@Base" 2.3.1 1 + (c++)"CADText::getHeight() const@Base" 2.3.1 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.3.1 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.3.1 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.3.1 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.3.1 1 + (c++)"GNMRule::c_str() const@Base" 2.3.1 1 + (c++)"GNMRule::GetType() const@Base" 2.3.1 1 + (c++)"GNMRule::IsValid() const@Base" 2.3.1 1 + (c++)"GNMRule::operator char const*() const@Base" 2.3.1 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.1 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.1 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.1 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.1 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.1 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.1 1 + (c++)"CADImage::print() const@Base" 2.3.1 1 + (c++)"CADLayer::getPlotting() const@Base" 2.3.1 1 + (c++)"CADLayer::getImageCount() const@Base" 2.3.1 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.3.1 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.3.1 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.3.1 1 + (c++)"CADLayer::getId() const@Base" 2.3.1 1 + (c++)"CADLayer::getOn() const@Base" 2.3.1 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADLayer::getColor() const@Base" 2.3.1 1 + (c++)"CADLayer::getFrozen() const@Base" 2.3.1 1 + (c++)"CADLayer::getHandle() const@Base" 2.3.1 1 + (c++)"CADLayer::getLocked() const@Base" 2.3.1 1 + (c++)"CADMLine::print() const@Base" 2.3.1 1 + (c++)"CADMLine::getScale() const@Base" 2.3.1 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.1 1 + (c++)"CADMText::getExtents() const@Base" 2.3.1 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.1 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.1 1 + (c++)"CADMText::print() const@Base" 2.3.1 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.1 1 + (c++)"CADSolid::print() const@Base" 2.3.1 1 + (c++)"CADXLine::print() const@Base" 2.3.1 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.3.1 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.3.1 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.3.1 1 + (c++)"OGRCurve::getDimension() const@Base" 2.3.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.1 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurve::end() const@Base" 2.3.1 1 + (c++)"OGRCurve::begin() const@Base" 2.3.1 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.3.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.1 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRPoint::getDimension() const@Base" 2.3.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPoint::clone() const@Base" 2.3.1 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPoint::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 2.3.1 1 + (c++)"CADAttdef::print() const@Base" 2.3.1 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.1 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.1 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.1 1 + (c++)"CADAttrib::print() const@Base" 2.3.1 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADCircle::print() const@Base" 2.3.1 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.1 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.1 1 + (c++)"CADFace3D::print() const@Base" 2.3.1 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.1 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.1 1 + (c++)"CADHandle::isNull() const@Base" 2.3.1 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.3.1 1 + (c++)"CADHandle::getAsLong() const@Base" 2.3.1 1 + (c++)"CADHeader::print() const@Base" 2.3.1 1 + (c++)"CADHeader::getCode(int) const@Base" 2.3.1 1 + (c++)"CADHeader::getSize() const@Base" 2.3.1 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.3.1 1 + (c++)"CADObject::getCRC() const@Base" 2.3.1 1 + (c++)"CADObject::getSize() const@Base" 2.3.1 1 + (c++)"CADObject::getType() const@Base" 2.3.1 1 + (c++)"CADSpline::isRational() const@Base" 2.3.1 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.1 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.1 1 + (c++)"CADSpline::print() const@Base" 2.3.1 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.1 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.1 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.1 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.3.1 1 + (c++)"CADVector::getX() const@Base" 2.3.1 1 + (c++)"CADVector::getY() const@Base" 2.3.1 1 + (c++)"CADVector::getZ() const@Base" 2.3.1 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.1 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 2.3.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::find(std::vector > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.3.1 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.3.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.3.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.3.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.3.1 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.1 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.1 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.1 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.1 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.3.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.3.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.3.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.3.1 1 + (c++)"std::pair::~pair()@Base" 2.3.1 1 + (c++)"std::pair::~pair()@Base" 2.3.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.1 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.3.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(OGRFeature*&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.3.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(OGRSpatialReference*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(OGRCurve*&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.1 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.3.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.3.1 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.3.1 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.3.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.3.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.3.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.3.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.3.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator >&&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator >&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.3.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_insert_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRGeomFieldDefn*&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(VSIFilesystemHandler* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_lower_bound(std::_Rb_tree_node > const, std::pair > >*, std::_Rb_tree_node_base*, std::vector > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.1 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.1 1 + (c++)"typeinfo for CADXRecord@Base" 2.3.1 1 + (c++)"typeinfo for GDALDriver@Base" 2.3.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.3.1 1 + (c++)"typeinfo for IGMLReader@Base" 2.3.1 1 + (c++)"typeinfo for MEMDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRFeature@Base" 2.3.1 1 + (c++)"typeinfo for OGRPolygon@Base" 2.3.1 1 + (c++)"typeinfo for OGRSurface@Base" 2.3.1 1 + (c++)"typeinfo for RawDataset@Base" 2.3.1 1 + (c++)"typeinfo for VRTDataset@Base" 2.3.1 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.1 1 + (c++)"typeinfo for GDALDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRGeometry@Base" 2.3.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 2.3.1 1 + (c++)"typeinfo for OGRStylePen@Base" 2.3.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.3.1 1 + (c++)"typeinfo for OGRAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 2.3.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.3.1 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.1 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.1 1 + (c++)"typeinfo for MEMRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for OGRDataSource@Base" 2.3.1 1 + (c++)"typeinfo for OGRLineString@Base" 2.3.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 2.3.1 1 + (c++)"typeinfo for RawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 2.3.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 2.3.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 2.3.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 2.3.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 2.3.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 2.3.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 2.3.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.3.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 2.3.1 1 + (c++)"typeinfo for VRTSimpleSource@Base" 2.3.1 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.3.1 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 2.3.1 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.3.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 2.3.1 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 2.3.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 2.3.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 2.3.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 2.3.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.3.1 1 + (c++)"typeinfo for OGRCircularString@Base" 2.3.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.3.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 2.3.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for OGRSpatialReference@Base" 2.3.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 2.3.1 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.3.1 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 2.3.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 2.3.1 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.3.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.3.1 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 2.3.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.3.1 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo for CADArc@Base" 2.3.1 1 + (c++)"typeinfo for CADRay@Base" 2.3.1 1 + (c++)"typeinfo for CPLErr@Base" 2.3.1 1 + (c++)"typeinfo for CADFile@Base" 2.3.1 1 + (c++)"typeinfo for CADLine@Base" 2.3.1 1 + (c++)"typeinfo for CADText@Base" 2.3.1 1 + (c++)"typeinfo for GNMRule@Base" 2.3.1 1 + (c++)"typeinfo for CADHatch@Base" 2.3.1 1 + (c++)"typeinfo for CADImage@Base" 2.3.1 1 + (c++)"typeinfo for CADMLine@Base" 2.3.1 1 + (c++)"typeinfo for CADMText@Base" 2.3.1 1 + (c++)"typeinfo for CADSolid@Base" 2.3.1 1 + (c++)"typeinfo for CADXLine@Base" 2.3.1 1 + (c++)"typeinfo for GNMGraph@Base" 2.3.1 1 + (c++)"typeinfo for OGRCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGRLayer@Base" 2.3.1 1 + (c++)"typeinfo for OGRPoint@Base" 2.3.1 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.1 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.1 1 + (c++)"typeinfo for CADCircle@Base" 2.3.1 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.1 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.1 1 + (c++)"typeinfo for CADObject@Base" 2.3.1 1 + (c++)"typeinfo for CADSpline@Base" 2.3.1 1 + (c++)"typeinfo for CPLString@Base" 2.3.1 1 + (c++)"typeinfo for VRTSource@Base" 2.3.1 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.3.1 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.1 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.3.1 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.1 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.1 1 + (c++)"typeinfo name for CADXRecord@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDriver@Base" 2.3.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.3.1 1 + (c++)"typeinfo name for IGMLReader@Base" 2.3.1 1 + (c++)"typeinfo name for MEMDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRFeature@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSurface@Base" 2.3.1 1 + (c++)"typeinfo name for RawDataset@Base" 2.3.1 1 + (c++)"typeinfo name for VRTDataset@Base" 2.3.1 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 2.3.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.3.1 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 2.3.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.3.1 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.1 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.1 1 + (c++)"typeinfo name for MEMRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLineString@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 2.3.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 2.3.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 2.3.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 2.3.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 2.3.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 2.3.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 2.3.1 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 2.3.1 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.3.1 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.3.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 2.3.1 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 2.3.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 2.3.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 2.3.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.3.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 2.3.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 2.3.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.3.1 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 2.3.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 2.3.1 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.3.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 2.3.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.3.1 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo name for CADArc@Base" 2.3.1 1 + (c++)"typeinfo name for CADRay@Base" 2.3.1 1 + (c++)"typeinfo name for CPLErr@Base" 2.3.1 1 + (c++)"typeinfo name for CADFile@Base" 2.3.1 1 + (c++)"typeinfo name for CADLine@Base" 2.3.1 1 + (c++)"typeinfo name for CADText@Base" 2.3.1 1 + (c++)"typeinfo name for GNMRule@Base" 2.3.1 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.1 1 + (c++)"typeinfo name for CADImage@Base" 2.3.1 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.1 1 + (c++)"typeinfo name for CADMText@Base" 2.3.1 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.1 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.1 1 + (c++)"typeinfo name for GNMGraph@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLayer@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPoint@Base" 2.3.1 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.1 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.1 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.1 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.1 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.1 1 + (c++)"typeinfo name for CADObject@Base" 2.3.1 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.1 1 + (c++)"typeinfo name for CPLString@Base" 2.3.1 1 + (c++)"typeinfo name for VRTSource@Base" 2.3.1 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.3.1 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.3.1 1 + (c++)"vtable for CADEllipse@Base" 2.3.1 1 + (c++)"vtable for CADPoint3D@Base" 2.3.1 1 + (c++)"vtable for CADXRecord@Base" 2.3.1 1 + (c++)"vtable for GDALDriver@Base" 2.3.1 1 + (c++)"vtable for GNMNetwork@Base" 2.3.1 1 + (c++)"vtable for IGMLReader@Base" 2.3.1 1 + (c++)"vtable for MEMDataset@Base" 2.3.1 1 + (c++)"vtable for OGRFeature@Base" 2.3.1 1 + (c++)"vtable for OGRPolygon@Base" 2.3.1 1 + (c++)"vtable for OGRSurface@Base" 2.3.1 1 + (c++)"vtable for RawDataset@Base" 2.3.1 1 + (c++)"vtable for VRTDataset@Base" 2.3.1 1 + (c++)"vtable for CADGeometry@Base" 2.3.1 1 + (c++)"vtable for GDALDataset@Base" 2.3.1 1 + (c++)"vtable for OGRGeometry@Base" 2.3.1 1 + (c++)"vtable for OGRSFDriver@Base" 2.3.1 1 + (c++)"vtable for OGRStylePen@Base" 2.3.1 1 + (c++)"vtable for OGRTriangle@Base" 2.3.1 1 + (c++)"vtable for OGRAttrIndex@Base" 2.3.1 1 + (c++)"vtable for OGRStyleTool@Base" 2.3.1 1 + (c++)"vtable for CADDictionary@Base" 2.3.1 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.1 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.1 1 + (c++)"vtable for MEMRasterBand@Base" 2.3.1 1 + (c++)"vtable for OGRDataSource@Base" 2.3.1 1 + (c++)"vtable for OGRLineString@Base" 2.3.1 1 + (c++)"vtable for OGRLinearRing@Base" 2.3.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.3.1 1 + (c++)"vtable for OGRMultiPoint@Base" 2.3.1 1 + (c++)"vtable for OGRStyleBrush@Base" 2.3.1 1 + (c++)"vtable for OGRStyleLabel@Base" 2.3.1 1 + (c++)"vtable for RawRasterBand@Base" 2.3.1 1 + (c++)"vtable for VRTRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALPamDataset@Base" 2.3.1 1 + (c++)"vtable for GDALRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALWarpKernel@Base" 2.3.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 2.3.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.3.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 2.3.1 1 + (c++)"vtable for GDALAsyncReader@Base" 2.3.1 1 + (c++)"vtable for GDALMajorObject@Base" 2.3.1 1 + (c++)"vtable for GDALRasterBlock@Base" 2.3.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.3.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 2.3.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.3.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 2.3.1 1 + (c++)"vtable for VRTSimpleSource@Base" 2.3.1 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.1 1 + (c++)"vtable for GDALProxyDataset@Base" 2.3.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.3.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.3.1 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 2.3.1 1 + (c++)"vtable for OGRPointIterator@Base" 2.3.1 1 + (c++)"vtable for VRTComplexSource@Base" 2.3.1 1 + (c++)"vtable for VRTRawRasterBand@Base" 2.3.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 2.3.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 2.3.1 1 + (c++)"vtable for GDALDriverManager@Base" 2.3.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALWarpOperation@Base" 2.3.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.3.1 1 + (c++)"vtable for OGRCircularString@Base" 2.3.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 2.3.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.3.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 2.3.1 1 + (c++)"vtable for OGRMultiLineString@Base" 2.3.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.3.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 2.3.1 1 + (c++)"vtable for OGRSpatialReference@Base" 2.3.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 2.3.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 2.3.1 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 2.3.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 2.3.1 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.3.1 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 2.3.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 2.3.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 2.3.1 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 2.3.1 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.3.1 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 2.3.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 2.3.1 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.3.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.3.1 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.3.1 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 2.3.1 1 + (c++)"vtable for CADArc@Base" 2.3.1 1 + (c++)"vtable for CADRay@Base" 2.3.1 1 + (c++)"vtable for CADFile@Base" 2.3.1 1 + (c++)"vtable for CADLine@Base" 2.3.1 1 + (c++)"vtable for CADText@Base" 2.3.1 1 + (c++)"vtable for GNMRule@Base" 2.3.1 1 + (c++)"vtable for CADHatch@Base" 2.3.1 1 + (c++)"vtable for CADImage@Base" 2.3.1 1 + (c++)"vtable for CADMLine@Base" 2.3.1 1 + (c++)"vtable for CADMText@Base" 2.3.1 1 + (c++)"vtable for CADSolid@Base" 2.3.1 1 + (c++)"vtable for CADXLine@Base" 2.3.1 1 + (c++)"vtable for GNMGraph@Base" 2.3.1 1 + (c++)"vtable for OGRCurve@Base" 2.3.1 1 + (c++)"vtable for OGRLayer@Base" 2.3.1 1 + (c++)"vtable for OGRPoint@Base" 2.3.1 1 + (c++)"vtable for CADAttdef@Base" 2.3.1 1 + (c++)"vtable for CADAttrib@Base" 2.3.1 1 + (c++)"vtable for CADCircle@Base" 2.3.1 1 + (c++)"vtable for CADFace3D@Base" 2.3.1 1 + (c++)"vtable for CADFileIO@Base" 2.3.1 1 + (c++)"vtable for CADSpline@Base" 2.3.1 1 + (c++)"vtable for VRTSource@Base" 2.3.1 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.1 1 diff --git a/gdal/debian/libgdal20.symbols.kfreebsd-amd64 b/gdal/debian/libgdal20.symbols.kfreebsd-amd64 new file mode 100644 index 000000000000..632170b8dcd6 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.kfreebsd-amd64 @@ -0,0 +1,4796 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.0 1 + (c++)"PamCleanProxyDB()@Base" 1.10.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.2 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.2 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.0 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.2 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.2 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.2 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.2 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.2 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.2 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.2 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.2 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.2 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.2 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.2 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.2 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.0 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.2 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.2 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.2 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.2 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.0 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.2 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.2 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.2 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.2 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.2 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.2 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.2 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.2 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.2 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.2 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.2 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.2 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.2 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.2 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.2 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.2 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.2 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::Sort()@Base" 1.10.0 1 + (c++)"CPLStringList::Clear()@Base" 1.10.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::StealList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.2 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.2 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.2 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 1.10.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 1.10.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.2 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.2 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.2 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.2 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.2 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.2 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.2 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.2 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.2 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.2 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.2 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.2 1 + (c++)"CADArc::CADArc()@Base" 2.3.2 1 + (c++)"CADArc::CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADRay::CADRay()@Base" 2.3.2 1 + (c++)"CADRay::CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine()@Base" 2.3.2 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.2 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.2 1 + (c++)"CADText::setHeight(double)@Base" 2.3.2 1 + (c++)"CADText::CADText()@Base" 2.3.2 1 + (c++)"CADText::CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.2 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.2 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.2 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.2 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.2 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADImage::CADImage()@Base" 2.3.2 1 + (c++)"CADImage::CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.2 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.2 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.2 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.2 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.2 1 + (c++)"CADMText::CADMText()@Base" 2.3.2 1 + (c++)"CADMText::CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADSolid::getCorners()@Base" 2.3.2 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.2 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.0 1 + (c++)"OGRLayer::end()@Base" 2.3.2 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::begin()@Base" 2.3.2 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetName()@Base" 1.10.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRPoint::empty()@Base" 1.10.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.2 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.2 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.2 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.2 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.2 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.2 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFileIO::Close()@Base" 2.3.2 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.2 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.2 1 + (c++)"CADObject::setSize(long)@Base" 2.3.2 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.2 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.2 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.2 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.2 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.2 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.2 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.2 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.2 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.2 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.2 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.2 1 + (c++)"CADVector::setY(double)@Base" 2.3.2 1 + (c++)"CADVector::setZ(double)@Base" 2.3.2 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector()@Base" 2.3.2 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector()@Base" 2.3.2 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.2 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.0 1 + (c++)"CPLString::tolower()@Base" 1.10.0 1 + (c++)"CPLString::toupper()@Base" 1.10.0 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag*)@Base" 1.10.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.0 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::Open(int)@Base" 1.10.0 1 + (c++)"S57Reader::Close()@Base" 1.10.0 1 + (c++)"S57Reader::Ingest()@Base" 1.10.0 1 + (c++)"S57Reader::Rewind()@Base" 1.10.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::Close()@Base" 1.10.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, __va_list_tag*), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.2 1 + (c++)"CADEllipse::print() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.2 1 + (c++)"CADPoint3D::print() const@Base" 2.3.2 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::end() const@Base" 2.3.2 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.2 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::begin() const@Base" 2.3.2 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.2 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.2 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.2 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.2 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADGeometry::getType() const@Base" 2.3.2 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.2 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.2 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.2 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.2 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.2 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::Count() const@Base" 1.10.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.2 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.2 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.2 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.2 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.2 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.2 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.2 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.2 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.2 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.2 1 + (c++)"CADArc::print() const@Base" 2.3.2 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.2 1 + (c++)"CADRay::print() const@Base" 2.3.2 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.2 1 + (c++)"CADLine::getEnd() const@Base" 2.3.2 1 + (c++)"CADLine::getStart() const@Base" 2.3.2 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.2 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.2 1 + (c++)"CADText::print() const@Base" 2.3.2 1 + (c++)"CADText::getHeight() const@Base" 2.3.2 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.2 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.2 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.2 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.2 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.2 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.2 1 + (c++)"CADImage::print() const@Base" 2.3.2 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.2 1 + (c++)"CADMLine::getScale() const@Base" 2.3.2 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.2 1 + (c++)"CADMText::getExtents() const@Base" 2.3.2 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.2 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.2 1 + (c++)"CADMText::print() const@Base" 2.3.2 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.2 1 + (c++)"CADSolid::print() const@Base" 2.3.2 1 + (c++)"CADXLine::print() const@Base" 2.3.2 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.2 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.2 1 + (c++)"OGRCurve::end() const@Base" 2.3.2 1 + (c++)"OGRCurve::begin() const@Base" 2.3.2 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.2 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPoint::clone() const@Base" 1.10.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.2 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.2 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.2 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.2 1 + (c++)"CADAttrib::print() const@Base" 2.3.2 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADCircle::print() const@Base" 2.3.2 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.2 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.2 1 + (c++)"CADFace3D::print() const@Base" 2.3.2 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.2 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.2 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.2 1 + (c++)"CADObject::getSize() const@Base" 2.3.2 1 + (c++)"CADObject::getType() const@Base" 2.3.2 1 + (c++)"CADSpline::isRational() const@Base" 2.3.2 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.2 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.2 1 + (c++)"CADSpline::print() const@Base" 2.3.2 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.2 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.2 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.2 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.2 1 + (c++)"CADVector::getY() const@Base" 2.3.2 1 + (c++)"CADVector::getZ() const@Base" 2.3.2 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.2 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 1.10.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::find(std::vector > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.2 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.2 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"std::pair* std::__uninitialized_copy::__uninit_copy*>, std::pair*>(std::move_iterator*>, std::move_iterator*>, std::pair*)@Base" 2.3.2 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.2 1 + (c++)"std::vector >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.2 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.3.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.0 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.0 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.2 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator >&&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator >&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator const, std::vector > > > std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector > > >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_lower_bound(std::_Rb_tree_node > const, std::pair > >*, std::_Rb_tree_node_base*, std::vector > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, char const*)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.2 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.2 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.2 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.2 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.2 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.2 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.2 1 + (c++)"typeinfo for CADRay@Base" 2.3.2 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.2 1 + (c++)"typeinfo for CADText@Base" 2.3.2 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.2 1 + (c++)"typeinfo for CADImage@Base" 2.3.2 1 + (c++)"typeinfo for CADMLine@Base" 2.3.2 1 + (c++)"typeinfo for CADMText@Base" 2.3.2 1 + (c++)"typeinfo for CADSolid@Base" 2.3.2 1 + (c++)"typeinfo for CADXLine@Base" 2.3.2 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.2 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.2 1 + (c++)"typeinfo for CADCircle@Base" 2.3.2 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.2 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.2 1 + (c++)"typeinfo for CADObject@Base" 2.3.2 1 + (c++)"typeinfo for CADSpline@Base" 2.3.2 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.2 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.2 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.2 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.2 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.2 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.2 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.2 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.2 1 + (c++)"typeinfo name for CADRay@Base" 2.3.2 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.2 1 + (c++)"typeinfo name for CADText@Base" 2.3.2 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.2 1 + (c++)"typeinfo name for CADImage@Base" 2.3.2 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.2 1 + (c++)"typeinfo name for CADMText@Base" 2.3.2 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.2 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.2 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.2 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.2 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.2 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.2 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.2 1 + (c++)"typeinfo name for CADObject@Base" 2.3.2 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.2 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.2 1 + (c++)"vtable for CADPoint3D@Base" 2.3.2 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.0 1 + (c++)"vtable for MEMDataset@Base" 1.10.0 1 + (c++)"vtable for OGRFeature@Base" 1.10.0 1 + (c++)"vtable for OGRPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRSurface@Base" 1.10.0 1 + (c++)"vtable for RawDataset@Base" 1.10.0 1 + (c++)"vtable for VRTDataset@Base" 1.10.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.2 1 + (c++)"vtable for GDALDataset@Base" 1.10.0 1 + (c++)"vtable for OGRGeometry@Base" 1.10.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.0 1 + (c++)"vtable for OGRStylePen@Base" 1.10.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.2 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.2 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRDataSource@Base" 1.10.0 1 + (c++)"vtable for OGRLineString@Base" 1.10.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.0 1 + (c++)"vtable for RawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.2 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.2 1 + (c++)"vtable for CADRay@Base" 2.3.2 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.2 1 + (c++)"vtable for CADText@Base" 2.3.2 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.2 1 + (c++)"vtable for CADImage@Base" 2.3.2 1 + (c++)"vtable for CADMLine@Base" 2.3.2 1 + (c++)"vtable for CADMText@Base" 2.3.2 1 + (c++)"vtable for CADSolid@Base" 2.3.2 1 + (c++)"vtable for CADXLine@Base" 2.3.2 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.0 1 + (c++)"vtable for OGRLayer@Base" 1.10.0 1 + (c++)"vtable for OGRPoint@Base" 1.10.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.2 1 + (c++)"vtable for CADAttrib@Base" 2.3.2 1 + (c++)"vtable for CADCircle@Base" 2.3.2 1 + (c++)"vtable for CADFace3D@Base" 2.3.2 1 + (c++)"vtable for CADFileIO@Base" 2.3.2 1 + (c++)"vtable for CADSpline@Base" 2.3.2 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.2 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.2 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.kfreebsd-i386 b/gdal/debian/libgdal20.symbols.kfreebsd-i386 new file mode 100644 index 000000000000..e2acb225086d --- /dev/null +++ b/gdal/debian/libgdal20.symbols.kfreebsd-i386 @@ -0,0 +1,4713 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, char*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.0 1 + (c++)"PamCleanProxyDB()@Base" 1.10.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.2 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.2 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.0 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.2 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.2 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.2 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.2 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.2 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.2 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.2 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.2 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.2 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.2 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.2 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.2 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.0 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.2 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.2 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.2 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.2 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.0 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.2 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.2 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.2 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.2 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.2 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.2 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.2 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.2 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.2 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.2 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.2 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.2 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.2 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.2 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.2 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.2 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.2 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::Sort()@Base" 1.10.0 1 + (c++)"CPLStringList::Clear()@Base" 1.10.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::StealList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.2 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.2 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.2 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.10.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.10.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.2 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.2 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.2 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.2 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.2 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.2 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.2 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.2 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.2 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.2 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.2 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.2 1 + (c++)"CADArc::CADArc()@Base" 2.3.2 1 + (c++)"CADArc::CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADRay::CADRay()@Base" 2.3.2 1 + (c++)"CADRay::CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine()@Base" 2.3.2 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.2 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.2 1 + (c++)"CADText::setHeight(double)@Base" 2.3.2 1 + (c++)"CADText::CADText()@Base" 2.3.2 1 + (c++)"CADText::CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.2 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.2 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.2 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.2 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.2 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADImage::CADImage()@Base" 2.3.2 1 + (c++)"CADImage::CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.2 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.2 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.2 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.2 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.2 1 + (c++)"CADMText::CADMText()@Base" 2.3.2 1 + (c++)"CADMText::CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADSolid::getCorners()@Base" 2.3.2 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.2 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.0 1 + (c++)"OGRLayer::end()@Base" 2.3.2 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::begin()@Base" 2.3.2 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetName()@Base" 1.10.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRPoint::empty()@Base" 1.10.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.2 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.2 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.2 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.2 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.2 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.2 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFileIO::Close()@Base" 2.3.2 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.2 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.2 1 + (c++)"CADObject::setSize(long)@Base" 2.3.2 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.2 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.2 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.2 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.2 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.2 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.2 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.2 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.2 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.2 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.2 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.2 1 + (c++)"CADVector::setY(double)@Base" 2.3.2 1 + (c++)"CADVector::setZ(double)@Base" 2.3.2 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector()@Base" 2.3.2 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector()@Base" 2.3.2 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.2 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.0 1 + (c++)"CPLString::tolower()@Base" 1.10.0 1 + (c++)"CPLString::toupper()@Base" 1.10.0 1 + (c++)"CPLString::vPrintf(char const*, char*)@Base" 1.10.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.0 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::Open(int)@Base" 1.10.0 1 + (c++)"S57Reader::Close()@Base" 1.10.0 1 + (c++)"S57Reader::Ingest()@Base" 1.10.0 1 + (c++)"S57Reader::Rewind()@Base" 1.10.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::Close()@Base" 1.10.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, char*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.2 1 + (c++)"CADEllipse::print() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.2 1 + (c++)"CADPoint3D::print() const@Base" 2.3.2 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::end() const@Base" 2.3.2 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.2 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::begin() const@Base" 2.3.2 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.2 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.2 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.2 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.2 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADGeometry::getType() const@Base" 2.3.2 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.2 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.2 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.2 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.2 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.2 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::Count() const@Base" 1.10.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.2 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.2 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.2 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.2 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.2 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.2 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.2 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.2 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.2 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.2 1 + (c++)"CADArc::print() const@Base" 2.3.2 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.2 1 + (c++)"CADRay::print() const@Base" 2.3.2 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.2 1 + (c++)"CADLine::getEnd() const@Base" 2.3.2 1 + (c++)"CADLine::getStart() const@Base" 2.3.2 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.2 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.2 1 + (c++)"CADText::print() const@Base" 2.3.2 1 + (c++)"CADText::getHeight() const@Base" 2.3.2 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.2 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.2 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.2 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.2 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.2 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.2 1 + (c++)"CADImage::print() const@Base" 2.3.2 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.2 1 + (c++)"CADMLine::getScale() const@Base" 2.3.2 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.2 1 + (c++)"CADMText::getExtents() const@Base" 2.3.2 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.2 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.2 1 + (c++)"CADMText::print() const@Base" 2.3.2 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.2 1 + (c++)"CADSolid::print() const@Base" 2.3.2 1 + (c++)"CADXLine::print() const@Base" 2.3.2 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.2 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.2 1 + (c++)"OGRCurve::end() const@Base" 2.3.2 1 + (c++)"OGRCurve::begin() const@Base" 2.3.2 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.2 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPoint::clone() const@Base" 1.10.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.2 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.2 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.2 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.2 1 + (c++)"CADAttrib::print() const@Base" 2.3.2 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADCircle::print() const@Base" 2.3.2 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.2 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.2 1 + (c++)"CADFace3D::print() const@Base" 2.3.2 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.2 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.2 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.2 1 + (c++)"CADObject::getSize() const@Base" 2.3.2 1 + (c++)"CADObject::getType() const@Base" 2.3.2 1 + (c++)"CADSpline::isRational() const@Base" 2.3.2 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.2 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.2 1 + (c++)"CADSpline::print() const@Base" 2.3.2 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.2 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.2 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.2 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.2 1 + (c++)"CADVector::getY() const@Base" 2.3.2 1 + (c++)"CADVector::getZ() const@Base" 2.3.2 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.2 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.10.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.2 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.2 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.2 1 + (c++)"std::vector >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.0 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.0 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.2 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.2 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.2 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.2 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.2 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.2 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.2 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.2 1 + (c++)"typeinfo for CADRay@Base" 2.3.2 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.2 1 + (c++)"typeinfo for CADText@Base" 2.3.2 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.2 1 + (c++)"typeinfo for CADImage@Base" 2.3.2 1 + (c++)"typeinfo for CADMLine@Base" 2.3.2 1 + (c++)"typeinfo for CADMText@Base" 2.3.2 1 + (c++)"typeinfo for CADSolid@Base" 2.3.2 1 + (c++)"typeinfo for CADXLine@Base" 2.3.2 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.2 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.2 1 + (c++)"typeinfo for CADCircle@Base" 2.3.2 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.2 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.2 1 + (c++)"typeinfo for CADObject@Base" 2.3.2 1 + (c++)"typeinfo for CADSpline@Base" 2.3.2 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.2 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.2 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.2 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.2 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.2 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.2 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.2 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.2 1 + (c++)"typeinfo name for CADRay@Base" 2.3.2 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.2 1 + (c++)"typeinfo name for CADText@Base" 2.3.2 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.2 1 + (c++)"typeinfo name for CADImage@Base" 2.3.2 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.2 1 + (c++)"typeinfo name for CADMText@Base" 2.3.2 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.2 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.2 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.2 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.2 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.2 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.2 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.2 1 + (c++)"typeinfo name for CADObject@Base" 2.3.2 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.2 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.2 1 + (c++)"vtable for CADPoint3D@Base" 2.3.2 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.0 1 + (c++)"vtable for MEMDataset@Base" 1.10.0 1 + (c++)"vtable for OGRFeature@Base" 1.10.0 1 + (c++)"vtable for OGRPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRSurface@Base" 1.10.0 1 + (c++)"vtable for RawDataset@Base" 1.10.0 1 + (c++)"vtable for VRTDataset@Base" 1.10.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.2 1 + (c++)"vtable for GDALDataset@Base" 1.10.0 1 + (c++)"vtable for OGRGeometry@Base" 1.10.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.0 1 + (c++)"vtable for OGRStylePen@Base" 1.10.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.2 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.2 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRDataSource@Base" 1.10.0 1 + (c++)"vtable for OGRLineString@Base" 1.10.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.0 1 + (c++)"vtable for RawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.2 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.2 1 + (c++)"vtable for CADRay@Base" 2.3.2 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.2 1 + (c++)"vtable for CADText@Base" 2.3.2 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.2 1 + (c++)"vtable for CADImage@Base" 2.3.2 1 + (c++)"vtable for CADMLine@Base" 2.3.2 1 + (c++)"vtable for CADMText@Base" 2.3.2 1 + (c++)"vtable for CADSolid@Base" 2.3.2 1 + (c++)"vtable for CADXLine@Base" 2.3.2 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.0 1 + (c++)"vtable for OGRLayer@Base" 1.10.0 1 + (c++)"vtable for OGRPoint@Base" 1.10.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.2 1 + (c++)"vtable for CADAttrib@Base" 2.3.2 1 + (c++)"vtable for CADCircle@Base" 2.3.2 1 + (c++)"vtable for CADFace3D@Base" 2.3.2 1 + (c++)"vtable for CADFileIO@Base" 2.3.2 1 + (c++)"vtable for CADSpline@Base" 2.3.2 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.2 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.2 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.m68k b/gdal/debian/libgdal20.symbols.m68k new file mode 100644 index 000000000000..5c4b1e1bf0c2 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.m68k @@ -0,0 +1,4694 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 2.1.3 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 2.1.3 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.3 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 2.1.3 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 2.1.3 1 + (c++)"PamCleanProxyDB()@Base" 2.1.3 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 2.1.3 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 2.1.3 1 + (c++)"PamAllocateProxy(char const*)@Base" 2.1.3 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.1.3 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.3 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.1.3 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 2.1.3 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.3 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.1 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 2.1.3 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 2.1.3 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.1 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 2.1.3 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.1.3 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.1.3 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 2.1.3 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.3 1 + (c++)"GDALCloneTransformer(void*)@Base" 2.1.3 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.3 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.1.3 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 2.1.3 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 2.1.3 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.3 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.1.3 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.1.3 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.1.3 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.1.3 1 + (c++)"OGRCreateExpatXMLParser()@Base" 2.1.3 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.1.3 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.1 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 2.1.3 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.1 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 2.1.3 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 2.1.3 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.1 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 2.1.3 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 2.1.3 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 2.1.3 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 2.1.3 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.1 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.1.3 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 2.1.3 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.1.3 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.1 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 2.1.3 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.1.3 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.1.3 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.1 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 2.1.3 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.1 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 2.1.3 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.1.3 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.1 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.1 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.1 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.1 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.1.3 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.1.3 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.1.3 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.1.3 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 2.1.3 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 2.1.3 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.1.3 1 + (c++)"GDALDriver::Delete(char const*)@Base" 2.1.3 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.1.3 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.1.3 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.1.3 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.1.3 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.1.3 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 2.1.3 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.1.3 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 2.1.3 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.1.3 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.1.3 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 2.1.3 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 2.1.3 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 2.1.3 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.1.3 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::ReadBox()@Base" 2.1.3 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::ReadNext()@Base" 2.1.3 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 2.1.3 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 2.1.3 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.1.3 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.1.3 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.1.3 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 2.1.3 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 2.1.3 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 2.1.3 1 + (c++)"GMLFeature::GetOBProperties()@Base" 2.1.3 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 2.1.3 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 2.1.3 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 2.1.3 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 2.1.3 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 2.1.3 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.1.3 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.1.3 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.1.3 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.1.3 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 2.1.3 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 2.1.3 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.1.3 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.1.3 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.1.3 1 + (c++)"MEMDataset::GetGCPCount()@Base" 2.1.3 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 2.1.3 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 2.1.3 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 2.1.3 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 2.1.3 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.1.3 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 2.1.3 1 + (c++)"MEMDataset::GetGCPs()@Base" 2.1.3 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.1.3 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.1.3 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.1.3 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.1.3 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.1.3 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.1.3 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.1 1 + (c++)"OGRFeature::UnsetField(int)@Base" 2.1.3 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.1 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 2.1.3 1 + (c++)"OGRFeature::StealGeometry()@Base" 2.1.3 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 2.1.3 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 2.1.3 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 2.1.3 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 2.1.3 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.3 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.1.3 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.1.3 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, double)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, int)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.1.3 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.1.3 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.1.3 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.1.3 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.1.3 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.1 1 + (c++)"OGRPolygon::closeRings()@Base" 2.1.3 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 2.1.3 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 2.1.3 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 2.1.3 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 2.1.3 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.1.3 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.3 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.1.3 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.3 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.1.3 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.1.3 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.1.3 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.1.3 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.3 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.1.3 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.1.3 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"RawDataset::RawDataset()@Base" 2.1.3 1 + (c++)"RawDataset::RawDataset()@Base" 2.1.3 1 + (c++)"RawDataset::~RawDataset()@Base" 2.1.3 1 + (c++)"RawDataset::~RawDataset()@Base" 2.1.3 1 + (c++)"RawDataset::~RawDataset()@Base" 2.1.3 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.1 1 + (c++)"VRTDataset::FlushCache()@Base" 2.1.3 1 + (c++)"VRTDataset::GetFileList()@Base" 2.1.3 1 + (c++)"VRTDataset::GetGCPCount()@Base" 2.1.3 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 2.1.3 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 2.1.3 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 2.1.3 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 2.1.3 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.3 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 2.1.3 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 2.1.3 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 2.1.3 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.1.3 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 2.1.3 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.1.3 1 + (c++)"VRTDataset::Delete(char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 2.1.3 1 + (c++)"VRTDataset::GetGCPs()@Base" 2.1.3 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 2.1.3 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.1.3 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 2.1.3 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.1 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.1.3 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.1.3 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.1.3 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.1.3 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.1.3 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.1 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.1 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.1.3 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.1.3 1 + (c++)"GDALDataset::FlushCache()@Base" 2.1.3 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.1.3 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.1.3 1 + (c++)"GDALDataset::Dereference()@Base" 2.1.3 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.1 1 + (c++)"GDALDataset::GetFileList()@Base" 2.1.3 1 + (c++)"GDALDataset::GetGCPCount()@Base" 2.1.3 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 2.1.3 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.3 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.1.3 1 + (c++)"GDALDataset::MarkAsShared()@Base" 2.1.3 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.3 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.1.3 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.1.3 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 2.1.3 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.1.3 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.1.3 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 2.1.3 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 2.1.3 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.1.3 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 2.1.3 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 2.1.3 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 2.1.3 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.1.3 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 2.1.3 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 2.1.3 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.1.3 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 2.1.3 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 2.1.3 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 2.1.3 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.1.3 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.1.3 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.1.3 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.1.3 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.3 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.1.3 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 2.1.3 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.3 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 2.1.3 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.1.3 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.1.3 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.1.3 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 2.1.3 1 + (c++)"GDALDataset::Init(bool)@Base" 2.2.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.1 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 2.1.3 1 + (c++)"GDALDataset::GetGCPs()@Base" 2.1.3 1 + (c++)"GDALDataset::Release()@Base" 2.1.3 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.1.3 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.1.3 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.1.3 1 + (c++)"GDALDataset::GetDriver()@Base" 2.1.3 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.1 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALDataset::Reference()@Base" 2.1.3 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.3 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.1.3 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.3 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.1.3 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.1.3 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.1.3 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.1.3 1 + (c++)"OGRGeometry::closeRings()@Base" 2.1.3 1 + (c++)"OGRGeometry::segmentize(double)@Base" 2.1.3 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.3 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 2.1.3 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 2.1.3 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.1 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 2.1.3 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.1 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 2.1.3 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 2.1.3 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 2.1.3 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.3 1 + (c++)"OGRGeometry::swapXY()@Base" 2.1.3 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.3 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.1.3 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.3 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.1.3 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.1.3 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.1.3 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.1.3 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.3 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 2.1.3 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 2.1.3 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.1.3 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.1.3 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.1.3 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.1.3 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.1.3 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 2.1.3 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 2.1.3 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 2.1.3 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 2.1.3 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 2.1.3 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 2.1.3 1 + (c++)"OGRStylePen::GetStyleString()@Base" 2.1.3 1 + (c++)"OGRStylePen::Parse()@Base" 2.1.3 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.1.3 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.1.3 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.1.3 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.1.3 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.1.3 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 2.1.3 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 2.1.3 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 2.1.3 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.1.3 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.1.3 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.1.3 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.1 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.1.3 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.1.3 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.3 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.1.3 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.1.3 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.1.3 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.1.3 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.1.3 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.1.3 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.1.3 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.1.3 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.1.3 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.1.3 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.1.3 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.1.3 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.1.3 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 2.1.3 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 2.1.3 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 2.1.3 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 2.1.3 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 2.1.3 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 2.1.3 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 2.1.3 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 2.1.3 1 + (c++)"OGRStyleTool::GetType()@Base" 2.1.3 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 2.1.3 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.1.3 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.1.3 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.1.3 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.1.3 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.1.3 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.1 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.1 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.1.3 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.1.3 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.1.3 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.1.3 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.1.3 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.1.3 1 + (c++)"CPLStringList::Initialize()@Base" 2.1.3 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 2.1.3 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 2.1.3 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 2.1.3 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 2.1.3 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 2.1.3 1 + (c++)"CPLStringList::Sort()@Base" 2.1.3 1 + (c++)"CPLStringList::Clear()@Base" 2.1.3 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 2.1.3 1 + (c++)"CPLStringList::AddString(char const*)@Base" 2.1.3 1 + (c++)"CPLStringList::StealList()@Base" 2.1.3 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.1.3 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.1.3 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.1.3 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.1.3 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.1.3 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.1.3 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.1.3 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.1.3 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 2.1.3 1 + (c++)"CPLStringList::operator[](int)@Base" 2.1.3 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 2.1.3 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 2.1.3 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 2.1.3 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 2.1.3 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 2.1.3 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.1.3 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.1.3 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.1.3 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.1.3 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 2.1.3 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.1.3 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.1.3 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.1.3 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.1.3 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.3 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.1.3 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.3 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.1.3 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.1.3 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.1.3 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.1.3 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.3 1 + (c++)"OGRLinearRing::closeRings()@Base" 2.1.3 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.1.3 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 2.1.3 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.1.3 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.3 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.1.3 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.1.3 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.3 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.1.3 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.1.3 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.1.3 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.1.3 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.3 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.1.3 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.3 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.1.3 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.3 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.1.3 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.1.3 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.1.3 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.1.3 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.3 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.3 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.1.3 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.3 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.1.3 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.1.3 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.1.3 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.1.3 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.3 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 2.1.3 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 2.1.3 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 2.1.3 1 + (c++)"OGRStyleBrush::Parse()@Base" 2.1.3 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.1.3 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.1.3 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.1.3 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.1.3 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.1.3 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 2.1.3 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 2.1.3 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 2.1.3 1 + (c++)"OGRStyleLabel::Parse()@Base" 2.1.3 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.1.3 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.1.3 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.1.3 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.1.3 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.1.3 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 2.1.3 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 2.1.3 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 2.1.3 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::Clear()@Base" 2.1.3 1 + (c++)"OGRStyleTable::Clone()@Base" 2.1.3 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.1.3 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.1.3 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.1.3 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.1.3 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 2.1.3 1 + (c++)"RawRasterBand::FlushCache()@Base" 2.1.3 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"RawRasterBand::Initialize()@Base" 2.1.3 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.3 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"RawRasterBand::GetColorTable()@Base" 2.1.3 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 2.1.3 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 2.1.3 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 2.1.3 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 2.1.3 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 2.1.3 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.1.3 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 2.1.3 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.1.3 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 2.1.3 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 2.1.3 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 2.1.3 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 2.1.3 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 2.1.3 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 2.1.3 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 2.1.3 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 2.1.3 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 2.1.3 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.1.3 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.1.3 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 2.1.3 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 2.1.3 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.3 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 2.1.3 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.1.3 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 2.1.3 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 2.1.3 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 2.1.3 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.1.3 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.1.3 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.1.3 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.1.3 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.1.3 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.1.3 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.1.3 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.1.3 1 + (c++)"CPLODBCSession::CloseSession()@Base" 2.1.3 1 + (c++)"CPLODBCSession::GetLastError()@Base" 2.1.3 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 2.1.3 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 2.1.3 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 2.1.3 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 2.1.3 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 2.1.3 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.1.3 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.1.3 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.1.3 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.1.3 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 2.1.3 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 2.1.3 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 2.1.3 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 2.1.3 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 2.1.3 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 2.1.3 1 + (c++)"DDFRecordIndex::Sort()@Base" 2.1.3 1 + (c++)"DDFRecordIndex::Clear()@Base" 2.1.3 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 2.1.3 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.1.3 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.1.3 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.1.3 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.1.3 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 2.1.3 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 2.1.3 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.1.3 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.1.3 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.1.3 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.1.3 1 + (c++)"GDALPamDataset::FlushCache()@Base" 2.1.3 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 2.1.3 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 2.1.3 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetFileList()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 2.1.3 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 2.1.3 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 2.1.3 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 2.1.3 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.1.3 1 + (c++)"GDALPamDataset::PamClear()@Base" 2.1.3 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 2.1.3 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.1.3 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.1.3 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.1.3 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.1.3 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.1.3 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.1.3 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::FlushCache()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetDataset()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.3 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 2.1.3 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 2.1.3 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 2.1.3 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 2.1.3 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.1.3 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 2.1.3 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 2.1.3 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 2.1.3 1 + (c++)"GDALRasterBand::Init(int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetBand()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetXSize()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetYSize()@Base" 2.1.3 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetAccess()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.1.3 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.3 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.1.3 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.1.3 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.1.3 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.1.3 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 2.1.3 1 + (c++)"GDALWarpKernel::Validate()@Base" 2.1.3 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.1.3 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.1.3 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.1.3 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.1.3 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::Release()@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::Parse()@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.1.3 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.1.3 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 2.1.3 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.1 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.1.3 1 + (c++)"VSIFileManager::Get()@Base" 2.1.3 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.1.3 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.1.3 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.1.3 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.1.3 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 2.1.3 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 2.1.3 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.1.3 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.1.3 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.1.3 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.1.3 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.1.3 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.1.3 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 2.1.3 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 2.1.3 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 2.1.3 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 2.1.3 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.1.3 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.1.3 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.1.3 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.1.3 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBlock::Internalize()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.1.3 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::Touch()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::Write()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::Detach()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::Verify()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.3 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.1.3 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.1.3 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.1.3 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.1.3 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 2.1.3 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 2.1.3 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.3 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.1.3 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.1.3 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.1.3 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.1.3 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.3 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.1.3 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.3 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.1.3 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.3 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.1.3 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.1.3 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.1.3 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.1.3 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetName()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.1.3 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::GetBand()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::GetType()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.3 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.1.3 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.1.3 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.1.3 1 + (c++)"CPLODBCStatement::Clear()@Base" 2.1.3 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::Append(double)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::Append(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.1.3 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.1.3 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.1.3 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.3 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.3 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.3 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 2.1.3 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.3 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.3 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.3 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.3 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.3 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.3 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.3 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.3 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.3 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.3 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.3 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.3 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.3 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.3 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.3 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.3 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.3 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.3 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.1.3 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.1.3 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.1.3 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.1.3 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.1.3 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 2.1.3 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 2.1.3 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 2.1.3 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 2.1.3 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.1.3 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 2.1.3 1 + (c++)"VRTComplexSource::GetType()@Base" 2.1.3 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.3 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.1.3 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.3 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.1.3 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.1.3 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.1.3 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.1.3 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.1.3 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.1.3 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 2.1.3 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 2.1.3 1 + (c++)"VSIVirtualHandle::Flush()@Base" 2.1.3 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 2.1.3 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 2.1.3 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 2.1.3 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 2.1.3 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 2.1.3 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 2.1.3 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 2.1.3 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.1.3 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.1.3 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.1.3 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.1.3 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.1.3 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 2.1.3 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.1.3 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.1.3 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.1.3 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.3 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.1.3 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.3 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.1.3 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.1.3 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.1.3 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.1.3 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.3 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.1.3 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.1.3 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.1.3 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.1.3 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.1.3 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.1.3 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 2.1.3 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 2.1.3 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 2.1.3 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.1.3 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.1.3 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.1.3 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.1.3 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.1.3 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.1.3 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.1.3 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.1.3 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.1.3 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.3 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.1.3 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.1.3 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.1.3 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.1.3 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 2.1.3 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.1.3 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.3 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.1.3 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.3 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.1.3 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.1.3 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.1.3 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.1.3 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.3 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.3 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.1.3 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.1.3 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.1.3 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.1.3 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.1.3 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::Dereference()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::Clear()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::Fixup()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::Release()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::Reference()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.1.3 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.1.3 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.1.3 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.1.3 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.1.3 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.1.3 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.1.3 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.1.3 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.1.3 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.1.3 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.1.3 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.1.3 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 2.1.3 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.3 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::empty()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.3 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 2.1.3 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 2.1.3 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.1.3 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.1.3 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.1.3 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.1.3 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::Init()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.1.3 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.1.3 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.3 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.3 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.1.3 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.1.3 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 2.1.3 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.1.3 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.1.3 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.1.3 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.1.3 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.1.3 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.1.3 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.1.3 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.1.3 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.3 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.3 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 2.1.3 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.3 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.3 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.3 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.1.3 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.1 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.1 1 + (c++)"CADArc::CADArc()@Base" 2.3.1 1 + (c++)"CADArc::CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADRay::CADRay()@Base" 2.3.1 1 + (c++)"CADRay::CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine()@Base" 2.3.1 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.1 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.1 1 + (c++)"CADText::setHeight(double)@Base" 2.3.1 1 + (c++)"CADText::CADText()@Base" 2.3.1 1 + (c++)"CADText::CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.1 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.1 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.1 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.1 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.1 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADImage::CADImage()@Base" 2.3.1 1 + (c++)"CADImage::CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.1 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.1 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.1 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.1 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.1 1 + (c++)"CADMText::CADMText()@Base" 2.3.1 1 + (c++)"CADMText::CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADSolid::getCorners()@Base" 2.3.1 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.1 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.1.3 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.3 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.1.3 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.3 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.1.3 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.1.3 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.1.3 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.1.3 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.3 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.1.3 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRLayer::SyncToDisk()@Base" 2.1.3 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRLayer::DeleteField(int)@Base" 2.1.3 1 + (c++)"OGRLayer::Dereference()@Base" 2.1.3 1 + (c++)"OGRLayer::GetGeomType()@Base" 2.1.3 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 2.1.3 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 2.1.3 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.1.3 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 2.1.3 1 + (c++)"OGRLayer::GetStyleTable()@Base" 2.1.3 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 2.1.3 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 2.1.3 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.1.3 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.3 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 2.1.3 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 2.1.3 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 2.1.3 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 2.1.3 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.3 1 + (c++)"OGRLayer::StartTransaction()@Base" 2.1.3 1 + (c++)"OGRLayer::CommitTransaction()@Base" 2.1.3 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 2.1.3 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 2.1.3 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 2.1.3 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.1.3 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 2.1.3 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.3 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 2.1.3 1 + (c++)"OGRLayer::end()@Base" 2.3.1 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRLayer::begin()@Base" 2.3.1 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRLayer::GetName()@Base" 2.1.3 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.1.3 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"OGRLayer::Reference()@Base" 2.1.3 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.1.3 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.1.3 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.1.3 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.1.3 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.1.3 1 + (c++)"OGRPoint::flattenTo2D()@Base" 2.1.3 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 2.1.3 1 + (c++)"OGRPoint::empty()@Base" 2.1.3 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPoint::swapXY()@Base" 2.1.3 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.3 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.1.3 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.1.3 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.1.3 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.1.3 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.3 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.1 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.1 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.1 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.1 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.1 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.1 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFileIO::Close()@Base" 2.3.1 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.1 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.1 1 + (c++)"CADObject::setSize(long)@Base" 2.3.1 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.1 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.1 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.1 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.1 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.1 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.1 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.1 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.1 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.1 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.1 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.1 1 + (c++)"CADVector::setY(double)@Base" 2.3.1 1 + (c++)"CADVector::setZ(double)@Base" 2.3.1 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector()@Base" 2.3.1 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector()@Base" 2.3.1 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 2.1.3 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 2.1.3 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 2.1.3 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 2.1.3 1 + (c++)"CPLString::tolower()@Base" 2.1.3 1 + (c++)"CPLString::toupper()@Base" 2.1.3 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 2.1.3 1 + (c++)"CPLString::~CPLString()@Base" 2.1.3 1 + (c++)"CPLString::~CPLString()@Base" 2.1.3 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 2.1.3 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 2.1.3 1 + (c++)"S57Reader::SetOptions(char**)@Base" 2.1.3 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 2.1.3 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 2.1.3 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.1.3 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 2.1.3 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 2.1.3 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 2.1.3 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 2.1.3 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 2.1.3 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 2.1.3 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 2.1.3 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 2.1.3 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Reader::Open(int)@Base" 2.1.3 1 + (c++)"S57Reader::Close()@Base" 2.1.3 1 + (c++)"S57Reader::Ingest()@Base" 2.1.3 1 + (c++)"S57Reader::Rewind()@Base" 2.1.3 1 + (c++)"S57Reader::ReadDSID()@Base" 2.1.3 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 2.1.3 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 2.1.3 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 2.1.3 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 2.1.3 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.1.3 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.1.3 1 + (c++)"S57Reader::~S57Reader()@Base" 2.1.3 1 + (c++)"S57Reader::~S57Reader()@Base" 2.1.3 1 + (c++)"S57Writer::MakeRecord()@Base" 2.1.3 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 2.1.3 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.1.3 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 2.1.3 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Writer::Close()@Base" 2.1.3 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 2.1.3 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int)@Base" 2.1.3 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int)@Base" 2.1.3 1 + (c++)"S57Writer::S57Writer()@Base" 2.1.3 1 + (c++)"S57Writer::S57Writer()@Base" 2.1.3 1 + (c++)"S57Writer::~S57Writer()@Base" 2.1.3 1 + (c++)"S57Writer::~S57Writer()@Base" 2.1.3 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.1.3 1 + (c++)"VRTSource::IsSimpleSource()@Base" 2.1.3 1 + (c++)"VRTSource::~VRTSource()@Base" 2.1.3 1 + (c++)"VRTSource::~VRTSource()@Base" 2.1.3 1 + (c++)"VRTSource::~VRTSource()@Base" 2.1.3 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, void*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.1 1 + (c++)"CADEllipse::print() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.1 1 + (c++)"CADPoint3D::print() const@Base" 2.3.1 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 2.1.3 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 2.1.3 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::end() const@Base" 2.3.1 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.1 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::begin() const@Base" 2.3.1 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.1 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 2.1.3 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 2.1.3 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 2.1.3 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.1.3 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.1.3 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.1.3 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::WkbSize() const@Base" 2.1.3 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.1.3 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.1 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.1 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.1 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADGeometry::getType() const@Base" 2.3.1 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.1 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.1.3 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.1.3 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 2.1.3 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Polygonize() const@Base" 2.1.3 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::exportToKML() const@Base" 2.1.3 1 + (c++)"OGRGeometry::getBoundary() const@Base" 2.1.3 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 2.1.3 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::exportToJson() const@Base" 2.1.3 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 2.1.3 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 2.1.3 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.3 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.3 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 2.1.3 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 2.1.3 1 + (c++)"OGRGeometry::IsRing() const@Base" 2.1.3 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::IsValid() const@Base" 2.1.3 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Boundary() const@Base" 2.1.3 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::IsSimple() const@Base" 2.1.3 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 2.1.3 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 2.1.3 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 2.1.3 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 2.1.3 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 2.1.3 1 + (c++)"OGR_SRSNode::Clone() const@Base" 2.1.3 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 2.1.3 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 2.1.3 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 2.1.3 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.1 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.1 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.3 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.1.3 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.1.3 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 2.1.3 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.1 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.1 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 2.1.3 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 2.1.3 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 2.1.3 1 + (c++)"CPLStringList::Count() const@Base" 2.1.3 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 2.1.3 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.3 1 + (c++)"CPLStringList::operator[](int) const@Base" 2.1.3 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRLineString::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRLineString::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.1.3 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.1.3 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.1.3 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.1.3 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRLineString::get_Area() const@Base" 2.1.3 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 2.1.3 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 2.1.3 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 2.1.3 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.1.3 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.1.3 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 2.1.3 1 + (c++)"OGRLinearRing::clone() const@Base" 2.1.3 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 2.1.3 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 2.1.3 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.1.3 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.1.3 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 2.1.3 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.1.3 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 2.1.3 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 2.1.3 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 2.1.3 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 2.1.3 1 + (c++)"GDALColorTable::Clone() const@Base" 2.1.3 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.1.3 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.1.3 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.3 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 2.1.3 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.1.3 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.1.3 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.1.3 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.1.3 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.3 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.1 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.1.3 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.1.3 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.1 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.1 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.1.3 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.1.3 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.1.3 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.1.3 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.1.3 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.1.3 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.1.3 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.1.3 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.1.3 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.1.3 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.1.3 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.1.3 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.1.3 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.1.3 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Clone() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 2.1.3 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::clone() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 2.1.3 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 2.1.3 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.1.3 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 2.1.3 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.1 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 2.1.3 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 2.1.3 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.1 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.1 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.1 1 + (c++)"CADArc::print() const@Base" 2.3.1 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.1 1 + (c++)"CADRay::print() const@Base" 2.3.1 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.1 1 + (c++)"CADLine::getEnd() const@Base" 2.3.1 1 + (c++)"CADLine::getStart() const@Base" 2.3.1 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.1 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.1 1 + (c++)"CADText::print() const@Base" 2.3.1 1 + (c++)"CADText::getHeight() const@Base" 2.3.1 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.1 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.1 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.1 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.1 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.1 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.1 1 + (c++)"CADImage::print() const@Base" 2.3.1 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.1 1 + (c++)"CADMLine::getScale() const@Base" 2.3.1 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.1 1 + (c++)"CADMText::getExtents() const@Base" 2.3.1 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.1 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.1 1 + (c++)"CADMText::print() const@Base" 2.3.1 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.1 1 + (c++)"CADSolid::print() const@Base" 2.3.1 1 + (c++)"CADXLine::print() const@Base" 2.3.1 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.1.3 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 2.1.3 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.1 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.1.3 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurve::end() const@Base" 2.3.1 1 + (c++)"OGRCurve::begin() const@Base" 2.3.1 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.1.3 1 + (c++)"OGRLayer::GetRefCount() const@Base" 2.1.3 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.1 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.1.3 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 2.1.3 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 2.1.3 1 + (c++)"OGRPoint::getDimension() const@Base" 2.1.3 1 + (c++)"OGRPoint::getGeometryName() const@Base" 2.1.3 1 + (c++)"OGRPoint::getGeometryType() const@Base" 2.1.3 1 + (c++)"OGRPoint::clone() const@Base" 2.1.3 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.1.3 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPoint::IsEmpty() const@Base" 2.1.3 1 + (c++)"OGRPoint::WkbSize() const@Base" 2.1.3 1 + (c++)"CADAttdef::print() const@Base" 2.3.1 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.1 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.1 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.1 1 + (c++)"CADAttrib::print() const@Base" 2.3.1 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADCircle::print() const@Base" 2.3.1 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.1 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.1 1 + (c++)"CADFace3D::print() const@Base" 2.3.1 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.1 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.1 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.1 1 + (c++)"CADObject::getSize() const@Base" 2.3.1 1 + (c++)"CADObject::getType() const@Base" 2.3.1 1 + (c++)"CADSpline::isRational() const@Base" 2.3.1 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.1 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.1 1 + (c++)"CADSpline::print() const@Base" 2.3.1 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.1 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.1 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.1 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.1 1 + (c++)"CADVector::getY() const@Base" 2.3.1 1 + (c++)"CADVector::getZ() const@Base" 2.3.1 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.1 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 2.1.3 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.1.3 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.1 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.1 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.1.3 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.1 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.1 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.1.3 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.1.3 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.1.3 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 2.1.3 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.1.3 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.3 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.3 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.3 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.3 1 + (c++)"std::pair::~pair()@Base" 2.1.3 1 + (c++)"std::pair::~pair()@Base" 2.1.3 1 + (c++)"std::pair > >::~pair()@Base" 2.1.3 1 + (c++)"std::pair > >::~pair()@Base" 2.1.3 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.1 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.3.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.1.3 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.1.3 1 + (c++)"std::vector >::~vector()@Base" 2.1.3 1 + (c++)"std::vector >::~vector()@Base" 2.1.3 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.3 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.1.3 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.1.3 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRFeature*&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRSpatialReference*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(OGRCurve*&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.3 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.3 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.1.3 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.1.3 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.1.3 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.3 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.1.3 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.3 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.1.3 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.3 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.1 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.3 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.3 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.3 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.1.3 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.1.3 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.1.3 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.1.3 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.1.3 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.3 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator >&&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator >&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.1.3 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRGeomFieldDefn*&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(VSIFilesystemHandler* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 2.1.3 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.3 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_equal, std::allocator > > > >(std::pair, std::allocator > > >&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::find(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::find(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.3 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.3 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.3 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.1.3 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.3 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.1 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.1 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 2.1.3 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 2.1.3 1 + (c++)"typeinfo for MEMDataset@Base" 2.1.3 1 + (c++)"typeinfo for OGRFeature@Base" 2.1.3 1 + (c++)"typeinfo for OGRPolygon@Base" 2.1.3 1 + (c++)"typeinfo for OGRSurface@Base" 2.1.3 1 + (c++)"typeinfo for RawDataset@Base" 2.1.3 1 + (c++)"typeinfo for VRTDataset@Base" 2.1.3 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.1 1 + (c++)"typeinfo for GDALDataset@Base" 2.1.3 1 + (c++)"typeinfo for OGRGeometry@Base" 2.1.3 1 + (c++)"typeinfo for OGRSFDriver@Base" 2.1.3 1 + (c++)"typeinfo for OGRStylePen@Base" 2.1.3 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 2.1.3 1 + (c++)"typeinfo for OGRStyleTool@Base" 2.1.3 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.1 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.1 1 + (c++)"typeinfo for MEMRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for OGRDataSource@Base" 2.1.3 1 + (c++)"typeinfo for OGRLineString@Base" 2.1.3 1 + (c++)"typeinfo for OGRLinearRing@Base" 2.1.3 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.1.3 1 + (c++)"typeinfo for OGRMultiPoint@Base" 2.1.3 1 + (c++)"typeinfo for OGRStyleBrush@Base" 2.1.3 1 + (c++)"typeinfo for OGRStyleLabel@Base" 2.1.3 1 + (c++)"typeinfo for RawRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for VRTRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for GDALPamDataset@Base" 2.1.3 1 + (c++)"typeinfo for GDALRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for GDALWarpKernel@Base" 2.1.3 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 2.1.3 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.1.3 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 2.1.3 1 + (c++)"typeinfo for GDALAsyncReader@Base" 2.1.3 1 + (c++)"typeinfo for GDALMajorObject@Base" 2.1.3 1 + (c++)"typeinfo for GDALRasterBlock@Base" 2.1.3 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.1.3 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 2.1.3 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.1.3 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 2.1.3 1 + (c++)"typeinfo for VRTSimpleSource@Base" 2.1.3 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyDataset@Base" 2.1.3 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.1.3 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.3 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 2.1.3 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.1.3 1 + (c++)"typeinfo for VRTComplexSource@Base" 2.1.3 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 2.1.3 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 2.1.3 1 + (c++)"typeinfo for GDALDriverManager@Base" 2.1.3 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for GDALWarpOperation@Base" 2.1.3 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.1.3 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 2.1.3 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.1.3 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 2.1.3 1 + (c++)"typeinfo for OGRMultiLineString@Base" 2.1.3 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.1.3 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for OGRSpatialReference@Base" 2.1.3 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 2.1.3 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 2.1.3 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 2.1.3 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 2.1.3 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 2.1.3 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 2.1.3 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 2.1.3 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 2.1.3 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 2.1.3 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 2.1.3 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.1.3 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.3 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 2.1.3 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.3 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 2.1.3 1 + (c++)"typeinfo for CADArc@Base" 2.3.1 1 + (c++)"typeinfo for CADRay@Base" 2.3.1 1 + (c++)"typeinfo for CPLErr@Base" 2.1.3 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.1 1 + (c++)"typeinfo for CADText@Base" 2.3.1 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.1 1 + (c++)"typeinfo for CADImage@Base" 2.3.1 1 + (c++)"typeinfo for CADMLine@Base" 2.3.1 1 + (c++)"typeinfo for CADMText@Base" 2.3.1 1 + (c++)"typeinfo for CADSolid@Base" 2.3.1 1 + (c++)"typeinfo for CADXLine@Base" 2.3.1 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 2.1.3 1 + (c++)"typeinfo for OGRLayer@Base" 2.1.3 1 + (c++)"typeinfo for OGRPoint@Base" 2.1.3 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.1 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.1 1 + (c++)"typeinfo for CADCircle@Base" 2.3.1 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.1 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.1 1 + (c++)"typeinfo for CADObject@Base" 2.3.1 1 + (c++)"typeinfo for CADSpline@Base" 2.3.1 1 + (c++)"typeinfo for CPLString@Base" 2.1.3 1 + (c++)"typeinfo for VRTSource@Base" 2.1.3 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.3 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.1 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.1 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.1 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 2.1.3 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 2.1.3 1 + (c++)"typeinfo name for MEMDataset@Base" 2.1.3 1 + (c++)"typeinfo name for OGRFeature@Base" 2.1.3 1 + (c++)"typeinfo name for OGRPolygon@Base" 2.1.3 1 + (c++)"typeinfo name for OGRSurface@Base" 2.1.3 1 + (c++)"typeinfo name for RawDataset@Base" 2.1.3 1 + (c++)"typeinfo name for VRTDataset@Base" 2.1.3 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDataset@Base" 2.1.3 1 + (c++)"typeinfo name for OGRGeometry@Base" 2.1.3 1 + (c++)"typeinfo name for OGRSFDriver@Base" 2.1.3 1 + (c++)"typeinfo name for OGRStylePen@Base" 2.1.3 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 2.1.3 1 + (c++)"typeinfo name for OGRStyleTool@Base" 2.1.3 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.1 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.1 1 + (c++)"typeinfo name for MEMRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for OGRDataSource@Base" 2.1.3 1 + (c++)"typeinfo name for OGRLineString@Base" 2.1.3 1 + (c++)"typeinfo name for OGRLinearRing@Base" 2.1.3 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.1.3 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 2.1.3 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 2.1.3 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 2.1.3 1 + (c++)"typeinfo name for RawRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for VRTRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for GDALPamDataset@Base" 2.1.3 1 + (c++)"typeinfo name for GDALRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 2.1.3 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 2.1.3 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.1.3 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 2.1.3 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 2.1.3 1 + (c++)"typeinfo name for GDALMajorObject@Base" 2.1.3 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 2.1.3 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.1.3 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 2.1.3 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.1.3 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 2.1.3 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 2.1.3 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 2.1.3 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.1.3 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.3 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 2.1.3 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.1.3 1 + (c++)"typeinfo name for VRTComplexSource@Base" 2.1.3 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 2.1.3 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 2.1.3 1 + (c++)"typeinfo name for GDALDriverManager@Base" 2.1.3 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 2.1.3 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.1.3 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 2.1.3 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.1.3 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 2.1.3 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 2.1.3 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.1.3 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 2.1.3 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 2.1.3 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 2.1.3 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 2.1.3 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 2.1.3 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 2.1.3 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 2.1.3 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 2.1.3 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 2.1.3 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 2.1.3 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 2.1.3 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.1.3 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.3 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 2.1.3 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.3 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 2.1.3 1 + (c++)"typeinfo name for CADArc@Base" 2.3.1 1 + (c++)"typeinfo name for CADRay@Base" 2.3.1 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.3 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.1 1 + (c++)"typeinfo name for CADText@Base" 2.3.1 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.1 1 + (c++)"typeinfo name for CADImage@Base" 2.3.1 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.1 1 + (c++)"typeinfo name for CADMText@Base" 2.3.1 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.1 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.1 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 2.1.3 1 + (c++)"typeinfo name for OGRLayer@Base" 2.1.3 1 + (c++)"typeinfo name for OGRPoint@Base" 2.1.3 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.1 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.1 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.1 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.1 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.1 1 + (c++)"typeinfo name for CADObject@Base" 2.3.1 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.1 1 + (c++)"typeinfo name for CPLString@Base" 2.1.3 1 + (c++)"typeinfo name for VRTSource@Base" 2.1.3 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.3 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.1 1 + (c++)"vtable for CADPoint3D@Base" 2.3.1 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 2.1.3 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 2.1.3 1 + (c++)"vtable for MEMDataset@Base" 2.1.3 1 + (c++)"vtable for OGRFeature@Base" 2.1.3 1 + (c++)"vtable for OGRPolygon@Base" 2.1.3 1 + (c++)"vtable for OGRSurface@Base" 2.1.3 1 + (c++)"vtable for RawDataset@Base" 2.1.3 1 + (c++)"vtable for VRTDataset@Base" 2.1.3 1 + (c++)"vtable for CADGeometry@Base" 2.3.1 1 + (c++)"vtable for GDALDataset@Base" 2.1.3 1 + (c++)"vtable for OGRGeometry@Base" 2.1.3 1 + (c++)"vtable for OGRSFDriver@Base" 2.1.3 1 + (c++)"vtable for OGRStylePen@Base" 2.1.3 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 2.1.3 1 + (c++)"vtable for OGRStyleTool@Base" 2.1.3 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.1 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.1 1 + (c++)"vtable for MEMRasterBand@Base" 2.1.3 1 + (c++)"vtable for OGRDataSource@Base" 2.1.3 1 + (c++)"vtable for OGRLineString@Base" 2.1.3 1 + (c++)"vtable for OGRLinearRing@Base" 2.1.3 1 + (c++)"vtable for OGRMultiCurve@Base" 2.1.3 1 + (c++)"vtable for OGRMultiPoint@Base" 2.1.3 1 + (c++)"vtable for OGRStyleBrush@Base" 2.1.3 1 + (c++)"vtable for OGRStyleLabel@Base" 2.1.3 1 + (c++)"vtable for RawRasterBand@Base" 2.1.3 1 + (c++)"vtable for VRTRasterBand@Base" 2.1.3 1 + (c++)"vtable for GDALPamDataset@Base" 2.1.3 1 + (c++)"vtable for GDALRasterBand@Base" 2.1.3 1 + (c++)"vtable for GDALWarpKernel@Base" 2.1.3 1 + (c++)"vtable for OGRFeatureDefn@Base" 2.1.3 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.1.3 1 + (c++)"vtable for OGRStyleSymbol@Base" 2.1.3 1 + (c++)"vtable for GDALAsyncReader@Base" 2.1.3 1 + (c++)"vtable for GDALMajorObject@Base" 2.1.3 1 + (c++)"vtable for GDALRasterBlock@Base" 2.1.3 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.1.3 1 + (c++)"vtable for OGRMultiPolygon@Base" 2.1.3 1 + (c++)"vtable for OGRMultiSurface@Base" 2.1.3 1 + (c++)"vtable for OGRMutexedLayer@Base" 2.1.3 1 + (c++)"vtable for VRTSimpleSource@Base" 2.1.3 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.1 1 + (c++)"vtable for GDALProxyDataset@Base" 2.1.3 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.1.3 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.3 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 2.1.3 1 + (c++)"vtable for OGRPointIterator@Base" 2.1.3 1 + (c++)"vtable for VRTComplexSource@Base" 2.1.3 1 + (c++)"vtable for VRTRawRasterBand@Base" 2.1.3 1 + (c++)"vtable for VRTWarpedDataset@Base" 2.1.3 1 + (c++)"vtable for VSIVirtualHandle@Base" 2.1.3 1 + (c++)"vtable for GDALDriverManager@Base" 2.1.3 1 + (c++)"vtable for GDALPamRasterBand@Base" 2.1.3 1 + (c++)"vtable for GDALWarpOperation@Base" 2.1.3 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.1.3 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 2.1.3 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.1.3 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 2.1.3 1 + (c++)"vtable for OGRMultiLineString@Base" 2.1.3 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.1.3 1 + (c++)"vtable for GDALProxyRasterBand@Base" 2.1.3 1 + (c++)"vtable for OGRSpatialReference@Base" 2.1.3 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 2.1.3 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 2.1.3 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 2.1.3 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 2.1.3 1 + (c++)"vtable for OGRMutexedDataSource@Base" 2.1.3 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 2.1.3 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 2.1.3 1 + (c++)"vtable for OGRGeometryCollection@Base" 2.1.3 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 2.1.3 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 2.1.3 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 2.1.3 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 2.1.3 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.1.3 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.3 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.3 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 2.1.3 1 + (c++)"vtable for CADArc@Base" 2.3.1 1 + (c++)"vtable for CADRay@Base" 2.3.1 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.1 1 + (c++)"vtable for CADText@Base" 2.3.1 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.1 1 + (c++)"vtable for CADImage@Base" 2.3.1 1 + (c++)"vtable for CADMLine@Base" 2.3.1 1 + (c++)"vtable for CADMText@Base" 2.3.1 1 + (c++)"vtable for CADSolid@Base" 2.3.1 1 + (c++)"vtable for CADXLine@Base" 2.3.1 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 2.1.3 1 + (c++)"vtable for OGRLayer@Base" 2.1.3 1 + (c++)"vtable for OGRPoint@Base" 2.1.3 1 + (c++)"vtable for CADAttdef@Base" 2.3.1 1 + (c++)"vtable for CADAttrib@Base" 2.3.1 1 + (c++)"vtable for CADCircle@Base" 2.3.1 1 + (c++)"vtable for CADFace3D@Base" 2.3.1 1 + (c++)"vtable for CADFileIO@Base" 2.3.1 1 + (c++)"vtable for CADSpline@Base" 2.3.1 1 + (c++)"vtable for VRTSource@Base" 2.1.3 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 diff --git a/gdal/debian/libgdal20.symbols.mips b/gdal/debian/libgdal20.symbols.mips new file mode 100644 index 000000000000..dce8eebc98f2 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.mips @@ -0,0 +1,4712 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.9.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.9.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.9.0 1 + (c++)"PamCleanProxyDB()@Base" 1.9.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.9.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.9.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.9.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.9.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.9.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.9.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.9.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.9.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.9.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.9.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.9.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.9.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.9.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.9.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.9.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.9.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.9.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.9.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.9.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.9.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.9.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.9.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.9.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.9.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.9.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.9.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.9.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.9.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.9.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.9.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.9.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.9.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.9.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.9.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.9.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.9.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.9.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.9.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.9.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.9.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.9.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.9.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.9.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.9.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.9.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.9.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRPoint::empty()@Base" 1.9.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.9.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.9.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.9.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 1.9.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.9.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.9.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.9.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::Open(int)@Base" 1.9.0 1 + (c++)"S57Reader::Close()@Base" 1.9.0 1 + (c++)"S57Reader::Ingest()@Base" 1.9.0 1 + (c++)"S57Reader::Rewind()@Base" 1.9.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.9.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.9.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.9.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.9.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::Close()@Base" 1.9.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, void*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.9.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.9.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.9.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.9.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.9.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.9.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.9.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.9.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.9.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.9.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPoint::clone() const@Base" 1.9.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.9.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.9.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.1.1 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.3.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.9.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.9.0 1 + (c++)"vtable for MEMDataset@Base" 1.9.0 1 + (c++)"vtable for OGRFeature@Base" 1.9.0 1 + (c++)"vtable for OGRPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRSurface@Base" 1.9.0 1 + (c++)"vtable for RawDataset@Base" 1.9.0 1 + (c++)"vtable for VRTDataset@Base" 1.9.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.9.0 1 + (c++)"vtable for OGRGeometry@Base" 1.9.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.9.0 1 + (c++)"vtable for OGRStylePen@Base" 1.9.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.9.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRDataSource@Base" 1.9.0 1 + (c++)"vtable for OGRLineString@Base" 1.9.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.9.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.9.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.9.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.9.0 1 + (c++)"vtable for RawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.9.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.9.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.9.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.9.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.9.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.9.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.9.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.9.0 1 + (c++)"vtable for OGRLayer@Base" 1.9.0 1 + (c++)"vtable for OGRPoint@Base" 1.9.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.mips64el b/gdal/debian/libgdal20.symbols.mips64el new file mode 100644 index 000000000000..05cdf48d7270 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.mips64el @@ -0,0 +1,4788 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 2.0.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 2.0.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 2.0.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 2.0.1 1 + (c++)"PamCleanProxyDB()@Base" 2.0.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 2.0.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 2.0.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 2.0.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 2.0.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 2.0.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 2.0.1 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 2.0.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 2.0.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 2.0.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 2.0.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 2.0.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 2.0.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 2.0.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 2.0.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 2.0.1 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 2.0.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 2.0.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 2.0.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 2.0.1 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 2.0.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 2.0.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 2.0.1 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 2.0.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.0.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.0.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.0.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.0.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.0.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.0.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.0.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.0.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.0.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.0.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 2.0.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 2.0.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.0.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.0.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 2.0.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 2.0.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 2.0.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 2.0.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 2.0.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 2.0.1 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 2.0.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 2.0.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 2.0.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.0.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.0.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.0.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.0.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 2.0.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 2.0.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.0.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.0.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.0.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 2.0.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 2.0.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 2.0.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 2.0.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.0.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 2.0.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 2.0.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.0.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.0.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.0.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.0.1 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 2.0.1 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 2.0.1 1 + (c++)"OGRFeature::StealGeometry()@Base" 2.0.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 2.0.1 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 2.0.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 2.0.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 2.0.1 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.0.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.0.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.0.1 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 2.0.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 2.0.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 2.0.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 2.0.1 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 2.0.1 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.0.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.0.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.0.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.0.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.0.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.0.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.0.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.0.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.0.1 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 2.0.1 1 + (c++)"VRTDataset::GetFileList()@Base" 2.0.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 2.0.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 2.0.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 2.0.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 2.0.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 2.0.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 2.0.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 2.0.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.0.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 2.0.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 2.0.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 2.0.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 2.0.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.0.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.0.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.0.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.0.1 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 2.0.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 2.0.1 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 2.0.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 2.0.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 2.0.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 2.0.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 2.0.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 2.0.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 2.0.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 2.0.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 2.0.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 2.0.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 2.0.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 2.0.1 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 2.0.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.0.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.0.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.0.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.0.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.0.1 1 + (c++)"OGRGeometry::closeRings()@Base" 2.0.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 2.0.1 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 2.0.1 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 2.0.1 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 2.0.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 2.0.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.0.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.0.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.0.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.0.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.0.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.0.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.0.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.0.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.0.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.0.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 2.0.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 2.0.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 2.0.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 2.0.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 2.0.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 2.0.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 2.0.1 1 + (c++)"OGRStylePen::Parse()@Base" 2.0.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.0.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.0.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.0.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.0.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.0.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 2.0.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 2.0.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 2.0.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.0.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.0.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.0.1 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.0.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.0.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.0.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.0.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.0.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.0.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.0.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.0.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.0.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.0.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 2.0.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 2.0.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 2.0.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 2.0.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 2.0.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 2.0.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 2.0.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 2.0.1 1 + (c++)"OGRStyleTool::GetType()@Base" 2.0.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 2.0.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.0.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.0.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.0.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.0.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.0.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 2.0.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 2.0.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 2.0.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 2.0.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 2.0.1 1 + (c++)"CPLStringList::Sort()@Base" 2.0.1 1 + (c++)"CPLStringList::Clear()@Base" 2.0.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 2.0.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 2.0.1 1 + (c++)"CPLStringList::StealList()@Base" 2.0.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.0.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.0.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.0.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.0.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.0.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.0.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.0.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.0.1 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 2.0.1 1 + (c++)"CPLStringList::operator[](int)@Base" 2.0.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 2.0.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 2.0.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.0.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.0.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.0.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 2.0.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.0.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.0.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.0.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.0.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.0.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.0.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.0.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 2.0.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 2.0.1 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.0.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.0.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.0.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.0.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.0.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.0.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.0.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.0.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.0.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.0.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 2.0.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 2.0.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 2.0.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 2.0.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.0.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.0.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.0.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.0.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.0.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 2.0.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 2.0.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 2.0.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 2.0.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.0.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.0.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.0.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.0.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.0.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 2.0.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 2.0.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 2.0.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::Clear()@Base" 2.0.1 1 + (c++)"OGRStyleTable::Clone()@Base" 2.0.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.0.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.0.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.0.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.0.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 2.0.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 2.0.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"RawRasterBand::Initialize()@Base" 2.0.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 2.0.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 2.0.1 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 2.0.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 2.0.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 2.0.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.0.1 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 2.0.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 2.0.1 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 2.0.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 2.0.1 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 2.0.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 2.0.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.0.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.0.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 2.0.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 2.0.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 2.0.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.0.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.0.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.0.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 2.0.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 2.0.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 2.0.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 2.0.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 2.0.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 2.0.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 2.0.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.0.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.0.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.0.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.0.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 2.0.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 2.0.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 2.0.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 2.0.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 2.0.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 2.0.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 2.0.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 2.0.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 2.0.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.0.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.0.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.0.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.0.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 2.0.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 2.0.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.0.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.0.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.0.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.0.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 2.0.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 2.0.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 2.0.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 2.0.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 2.0.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 2.0.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 2.0.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 2.0.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.0.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.0.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.0.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.0.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.0.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.0.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 2.0.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 2.0.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 2.0.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 2.0.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 2.0.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 2.0.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.0.1 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 2.0.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 2.0.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetBand()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 2.0.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.0.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.0.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.0.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.0.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.0.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 2.0.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 2.0.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.0.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.0.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.0.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.0.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.0.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.0.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 2.0.1 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 2.0.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.0.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.0.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.0.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.0.1 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 2.0.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 2.0.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.0.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.0.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.0.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.0.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.0.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 2.0.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 2.0.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 2.0.1 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 2.0.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.0.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.0.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.0.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.0.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Write()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.0.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 2.0.1 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 2.0.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.0.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.0.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.0.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetName()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetType()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.0.1 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.0.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 2.0.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.0.1 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 2.0.1 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetType()@Base" 2.0.1 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.0.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.0.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.0.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.0.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.0.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 2.0.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 2.0.1 1 + (c++)"VSIVirtualHandle::Flush()@Base" 2.0.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 2.0.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 2.0.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 2.0.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 2.0.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 2.0.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.0.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.0.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.0.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.0.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 2.0.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.0.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.0.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.0.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.0.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.0.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.0.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 2.0.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.0.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.0.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.0.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.0.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.0.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::Release()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.0.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.0.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.0.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.0.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.1 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.0.1 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.0.1 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 2.0.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 2.0.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 2.0.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 2.0.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 2.0.1 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 2.0.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.1 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 2.0.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 2.0.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.0.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.0.1 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.0.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.0.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.0.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.0.1 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 2.0.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.0.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.0.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.0.1 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.0.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.0.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.0.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.0.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayer::Dereference()@Base" 2.0.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 2.0.1 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayer::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 2.0.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 2.0.1 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetName()@Base" 2.0.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayer::Reference()@Base" 2.0.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.0.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.0.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.0.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.0.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.0.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRPoint::empty()@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 2.0.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.0.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.0.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.0.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.0.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.0.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 2.0.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 2.0.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 2.0.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 2.0.1 1 + (c++)"CPLString::tolower()@Base" 2.0.1 1 + (c++)"CPLString::toupper()@Base" 2.0.1 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 2.0.1 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 2.0.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 2.0.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 2.0.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 2.0.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 2.0.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.0.1 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 2.0.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 2.0.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 2.0.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 2.0.1 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 2.0.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 2.0.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 2.0.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 2.0.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Reader::Open(int)@Base" 2.0.1 1 + (c++)"S57Reader::Close()@Base" 2.0.1 1 + (c++)"S57Reader::Ingest()@Base" 2.0.1 1 + (c++)"S57Reader::Rewind()@Base" 2.0.1 1 + (c++)"S57Reader::ReadDSID()@Base" 2.0.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 2.0.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 2.0.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 2.0.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.0.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.0.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.0.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.0.1 1 + (c++)"S57Writer::MakeRecord()@Base" 2.0.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 2.0.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.0.1 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 2.0.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Writer::Close()@Base" 2.0.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 2.0.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.0.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.0.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.0.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.0.1 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.1 1 + (c++)"VRTSource::IsSimpleSource()@Base" 2.0.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.0.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.0.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, void*), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 2.0.1 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 2.0.1 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 2.0.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 2.0.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 2.0.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 2.0.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 2.0.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 2.0.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::exportToJson() const@Base" 2.0.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 2.0.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 2.0.1 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 2.0.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 2.0.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 2.0.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 2.0.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 2.0.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 2.0.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 2.0.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 2.0.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 2.0.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 2.0.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 2.0.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 2.0.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 2.0.1 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 2.0.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 2.0.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 2.0.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 2.0.1 1 + (c++)"CPLStringList::Count() const@Base" 2.0.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 2.0.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 2.0.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 2.0.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 2.0.1 1 + (c++)"OGRLinearRing::clone() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 2.0.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 2.0.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 2.0.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 2.0.1 1 + (c++)"GDALColorTable::Clone() const@Base" 2.0.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.1 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 2.0.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 2.0.1 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 2.0.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 2.0.1 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 2.0.1 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 2.0.1 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 2.0.1 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 2.0.1 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRPoint::getDimension() const@Base" 2.0.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRPoint::clone() const@Base" 2.0.1 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 2.0.1 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 2.0.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.0.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 2.0.1 1 + (c++)"std::pair::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.0.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 2.0.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.1 1 + (c++)"std::vector >::~vector()@Base" 2.0.1 1 + (c++)"std::vector >::~vector()@Base" 2.0.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 2.0.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.0.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.0.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, double const&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.0.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 2.0.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 2.0.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 2.0.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 2.0.1 1 + (c++)"typeinfo for MEMDataset@Base" 2.0.1 1 + (c++)"typeinfo for OGRFeature@Base" 2.0.1 1 + (c++)"typeinfo for OGRPolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRSurface@Base" 2.0.1 1 + (c++)"typeinfo for RawDataset@Base" 2.0.1 1 + (c++)"typeinfo for VRTDataset@Base" 2.0.1 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 2.0.1 1 + (c++)"typeinfo for OGRGeometry@Base" 2.0.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 2.0.1 1 + (c++)"typeinfo for OGRStylePen@Base" 2.0.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 2.0.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for OGRDataSource@Base" 2.0.1 1 + (c++)"typeinfo for OGRLineString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 2.0.1 1 + (c++)"typeinfo for RawRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 2.0.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 2.0.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 2.0.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 2.0.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 2.0.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 2.0.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 2.0.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 2.0.1 1 + (c++)"typeinfo for VRTSimpleSource@Base" 2.0.1 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 2.0.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 2.0.1 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 2.0.1 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 2.0.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 2.0.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 2.0.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 2.0.1 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 2.0.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 2.0.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 2.0.1 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 2.0.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 2.0.1 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 2.0.1 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 2.0.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 2.0.1 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 2.0.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 2.0.1 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayer@Base" 2.0.1 1 + (c++)"typeinfo for OGRPoint@Base" 2.0.1 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 2.0.1 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 2.0.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 2.0.1 1 + (c++)"typeinfo name for MEMDataset@Base" 2.0.1 1 + (c++)"typeinfo name for OGRFeature@Base" 2.0.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRSurface@Base" 2.0.1 1 + (c++)"typeinfo name for RawDataset@Base" 2.0.1 1 + (c++)"typeinfo name for VRTDataset@Base" 2.0.1 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 2.0.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 2.0.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 2.0.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 2.0.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLineString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 2.0.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 2.0.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 2.0.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 2.0.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 2.0.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 2.0.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 2.0.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 2.0.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 2.0.1 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 2.0.1 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 2.0.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 2.0.1 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 2.0.1 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 2.0.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 2.0.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 2.0.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 2.0.1 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 2.0.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 2.0.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 2.0.1 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 2.0.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 2.0.1 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 2.0.1 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 2.0.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 2.0.1 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 2.0.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 2.0.1 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayer@Base" 2.0.1 1 + (c++)"typeinfo name for OGRPoint@Base" 2.0.1 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 2.0.1 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.1 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 2.0.1 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 2.0.1 1 + (c++)"vtable for MEMDataset@Base" 2.0.1 1 + (c++)"vtable for OGRFeature@Base" 2.0.1 1 + (c++)"vtable for OGRPolygon@Base" 2.0.1 1 + (c++)"vtable for OGRSurface@Base" 2.0.1 1 + (c++)"vtable for RawDataset@Base" 2.0.1 1 + (c++)"vtable for VRTDataset@Base" 2.0.1 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 2.0.1 1 + (c++)"vtable for OGRGeometry@Base" 2.0.1 1 + (c++)"vtable for OGRSFDriver@Base" 2.0.1 1 + (c++)"vtable for OGRStylePen@Base" 2.0.1 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 2.0.1 1 + (c++)"vtable for OGRStyleTool@Base" 2.0.1 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 2.0.1 1 + (c++)"vtable for OGRDataSource@Base" 2.0.1 1 + (c++)"vtable for OGRLineString@Base" 2.0.1 1 + (c++)"vtable for OGRLinearRing@Base" 2.0.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 2.0.1 1 + (c++)"vtable for OGRStyleBrush@Base" 2.0.1 1 + (c++)"vtable for OGRStyleLabel@Base" 2.0.1 1 + (c++)"vtable for RawRasterBand@Base" 2.0.1 1 + (c++)"vtable for VRTRasterBand@Base" 2.0.1 1 + (c++)"vtable for GDALPamDataset@Base" 2.0.1 1 + (c++)"vtable for GDALRasterBand@Base" 2.0.1 1 + (c++)"vtable for GDALWarpKernel@Base" 2.0.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 2.0.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 2.0.1 1 + (c++)"vtable for GDALAsyncReader@Base" 2.0.1 1 + (c++)"vtable for GDALMajorObject@Base" 2.0.1 1 + (c++)"vtable for GDALRasterBlock@Base" 2.0.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 2.0.1 1 + (c++)"vtable for VRTSimpleSource@Base" 2.0.1 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 2.0.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 2.0.1 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 2.0.1 1 + (c++)"vtable for VRTRawRasterBand@Base" 2.0.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 2.0.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 2.0.1 1 + (c++)"vtable for GDALDriverManager@Base" 2.0.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 2.0.1 1 + (c++)"vtable for GDALWarpOperation@Base" 2.0.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 2.0.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 2.0.1 1 + (c++)"vtable for OGRMultiLineString@Base" 2.0.1 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 2.0.1 1 + (c++)"vtable for OGRSpatialReference@Base" 2.0.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 2.0.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 2.0.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 2.0.1 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 2.0.1 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 2.0.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 2.0.1 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 2.0.1 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 2.0.1 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 2.0.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 2.0.1 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 2.0.1 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.1 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 2.0.1 1 + (c++)"vtable for OGRLayer@Base" 2.0.1 1 + (c++)"vtable for OGRPoint@Base" 2.0.1 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 2.0.1 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.1 1 diff --git a/gdal/debian/libgdal20.symbols.mipsel b/gdal/debian/libgdal20.symbols.mipsel new file mode 100644 index 000000000000..440cc1b8336a --- /dev/null +++ b/gdal/debian/libgdal20.symbols.mipsel @@ -0,0 +1,4714 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.9.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.9.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.9.0 1 + (c++)"PamCleanProxyDB()@Base" 1.9.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.9.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.9.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.9.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.9.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.9.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.9.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.9.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.9.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.9.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.9.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.9.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.9.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.9.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.9.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.9.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.9.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.9.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.9.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.9.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.9.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.9.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.9.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.9.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.9.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.9.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.9.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.9.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.9.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.9.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.9.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.9.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.9.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.9.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.9.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.9.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.9.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.9.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.9.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.1 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.1 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.9.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.9.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.9.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.9.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.9.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.9.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.9.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.9.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRPoint::empty()@Base" 1.9.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.9.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.9.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.9.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 1.9.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.9.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.9.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.9.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::Open(int)@Base" 1.9.0 1 + (c++)"S57Reader::Close()@Base" 1.9.0 1 + (c++)"S57Reader::Ingest()@Base" 1.9.0 1 + (c++)"S57Reader::Rewind()@Base" 1.9.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.9.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.9.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.9.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.9.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::Close()@Base" 1.9.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, void*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.9.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.9.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.9.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.9.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.9.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.9.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.1 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.9.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.9.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.9.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.9.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPoint::clone() const@Base" 1.9.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.9.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.9.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.1.1 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.3.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, double const&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.1 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.1 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.9.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.9.0 1 + (c++)"vtable for MEMDataset@Base" 1.9.0 1 + (c++)"vtable for OGRFeature@Base" 1.9.0 1 + (c++)"vtable for OGRPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRSurface@Base" 1.9.0 1 + (c++)"vtable for RawDataset@Base" 1.9.0 1 + (c++)"vtable for VRTDataset@Base" 1.9.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.9.0 1 + (c++)"vtable for OGRGeometry@Base" 1.9.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.9.0 1 + (c++)"vtable for OGRStylePen@Base" 1.9.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.9.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRDataSource@Base" 1.9.0 1 + (c++)"vtable for OGRLineString@Base" 1.9.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.9.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.9.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.9.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.9.0 1 + (c++)"vtable for RawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.9.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.9.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.9.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.9.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.9.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.9.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.9.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.1 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.9.0 1 + (c++)"vtable for OGRLayer@Base" 1.9.0 1 + (c++)"vtable for OGRPoint@Base" 1.9.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.1 1 diff --git a/gdal/debian/libgdal20.symbols.powerpc b/gdal/debian/libgdal20.symbols.powerpc new file mode 100644 index 000000000000..5cca5b19c729 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.powerpc @@ -0,0 +1,4712 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.8.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.8.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.8.0 1 + (c++)"PamCleanProxyDB()@Base" 1.8.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.8.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.8.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.8.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.8.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.8.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.8.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.8.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.8.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.8.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.8.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.8.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.8.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.8.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.8.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.8.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.8.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.8.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.8.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.8.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.8.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.8.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.8.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.8.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.8.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.8.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.8.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.8.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.8.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.8.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.8.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.8.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.8.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.8.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.8.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.8.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.8.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.8.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.8.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.8.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.8.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.8.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.8.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.8.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.8.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.8.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.8.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.8.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.8.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.8.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.8.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.8.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.8.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.8.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.8.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.8.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.8.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.8.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.8.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.8.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.8.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.8.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.8.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.8.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.8.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.8.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.8.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.8.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.8.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.8.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.8.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.8.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.8.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.8.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.8.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.8.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.8.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.8.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.8.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.8.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.8.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.8.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.8.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.8.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.8.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.8.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.8.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.8.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.8.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.8.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.8.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.8.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.8.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.8.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.8.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.8.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.8.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.8.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.8.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.8.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.8.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.8.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.8.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.8.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.8.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.8.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.8.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.8.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.8.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.8.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.8.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.8.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.8.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.8.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.8.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.8.0 1 + (c++)"OGRPoint::empty()@Base" 1.8.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.8.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.8.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.8.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.8.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.8.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.8.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.8.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag*)@Base" 1.9.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.8.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.8.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.8.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.8.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.8.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Reader::Open(int)@Base" 1.8.0 1 + (c++)"S57Reader::Close()@Base" 1.8.0 1 + (c++)"S57Reader::Ingest()@Base" 1.8.0 1 + (c++)"S57Reader::Rewind()@Base" 1.8.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.8.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.8.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.8.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.8.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.8.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.8.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.8.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.8.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::Close()@Base" 1.8.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.8.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.8.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, __va_list_tag*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.8.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.8.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.8.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.8.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.8.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.8.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.8.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.8.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.8.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.8.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.8.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.8.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.8.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.8.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.8.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.8.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.8.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.8.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.8.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.8.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.8.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.8.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.8.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.8.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.8.0 1 + (c++)"OGRPoint::clone() const@Base" 1.8.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.8.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.8.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.8.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.1.1 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.8.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.3.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::~vector()@Base" 1.8.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.8.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.8.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 1.8.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.8.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.8.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.8.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.8.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.8.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.8.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.8.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.8.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.8.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.8.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.8.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.8.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.8.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.8.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.8.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.8.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.8.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.8.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.8.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.8.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.8.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.8.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.8.0 1 + (c++)"vtable for MEMDataset@Base" 1.8.0 1 + (c++)"vtable for OGRFeature@Base" 1.8.0 1 + (c++)"vtable for OGRPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRSurface@Base" 1.8.0 1 + (c++)"vtable for RawDataset@Base" 1.8.0 1 + (c++)"vtable for VRTDataset@Base" 1.8.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.8.0 1 + (c++)"vtable for OGRGeometry@Base" 1.8.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.8.0 1 + (c++)"vtable for OGRStylePen@Base" 1.8.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.8.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRDataSource@Base" 1.8.0 1 + (c++)"vtable for OGRLineString@Base" 1.8.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.8.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.8.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.8.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.8.0 1 + (c++)"vtable for RawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.8.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.8.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.8.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.8.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.8.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.8.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.8.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.8.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.8.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.8.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.8.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.8.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.8.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.8.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.8.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.8.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.8.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.8.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.8.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.8.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.8.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.8.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.8.0 1 + (c++)"vtable for OGRLayer@Base" 1.8.0 1 + (c++)"vtable for OGRPoint@Base" 1.8.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.powerpcspe b/gdal/debian/libgdal20.symbols.powerpcspe new file mode 100644 index 000000000000..cec2e1a69139 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.powerpcspe @@ -0,0 +1,4707 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 2.2.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 2.2.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.2.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 2.2.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 2.2.0 1 + (c++)"PamCleanProxyDB()@Base" 2.2.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 2.2.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 2.2.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.2.0 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.2.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.2.0 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 2.2.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.2.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.2 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 2.2.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 2.2.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.2 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 2.2.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.2.0 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.2.0 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 2.2.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.2.0 1 + (c++)"GDALCloneTransformer(void*)@Base" 2.2.0 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.2.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 2.2.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 2.2.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.2.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.2.0 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.2.0 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.2 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.2.0 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.2.0 1 + (c++)"OGRCreateExpatXMLParser()@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.2.0 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.2 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 2.2.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.2 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 2.2.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 2.2.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.2 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 2.2.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 2.2.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 2.2.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 2.2.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.2 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.2.0 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.2 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 2.2.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.2.0 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.2.0 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.2 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 2.2.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.2 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 2.2.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.2.0 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.2 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.2 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.2 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.2 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.2 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.2 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.2.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.2.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.2.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 2.2.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 2.2.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.2.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 2.2.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.2.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.2.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.2.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.2.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.2.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 2.2.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.2.0 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 2.2.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.2.0 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.2.0 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 2.2.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 2.2.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.2.0 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 2.2.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 2.2.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 2.2.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 2.2.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.2.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.2.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.2.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 2.2.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 2.2.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 2.2.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 2.2.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 2.2.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 2.2.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 2.2.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 2.2.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 2.2.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.2.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.2.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.2.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 2.2.0 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 2.2.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.2.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.2.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.2.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 2.2.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 2.2.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 2.2.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 2.2.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 2.2.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.2.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 2.2.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.2.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.2.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.2.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.2.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.2.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.2 1 + (c++)"OGRFeature::UnsetField(int)@Base" 2.2.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.2 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 2.2.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 2.2.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 2.2.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 2.2.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 2.2.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 2.2.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.2.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.2 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.2 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.2.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.2.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.2.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.2.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.2 1 + (c++)"OGRPolygon::closeRings()@Base" 2.2.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 2.2.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 2.2.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 2.2.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 2.2.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.2.0 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.2.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.2.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.2.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.2.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.2.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.2.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.2.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.2.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.2.0 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.2.0 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"RawDataset::RawDataset()@Base" 2.2.0 1 + (c++)"RawDataset::RawDataset()@Base" 2.2.0 1 + (c++)"RawDataset::~RawDataset()@Base" 2.2.0 1 + (c++)"RawDataset::~RawDataset()@Base" 2.2.0 1 + (c++)"RawDataset::~RawDataset()@Base" 2.2.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.2 1 + (c++)"VRTDataset::FlushCache()@Base" 2.2.0 1 + (c++)"VRTDataset::GetFileList()@Base" 2.2.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 2.2.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 2.2.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 2.2.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 2.2.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.2.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 2.2.0 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 2.2.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.2.0 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 2.2.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.2.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 2.2.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 2.2.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 2.2.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 2.2.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.2 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.2.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.2.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.2.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.2.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.2.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.2 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.2 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.2 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.2 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.2 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.2.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.2.0 1 + (c++)"GDALDataset::FlushCache()@Base" 2.2.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.2.0 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.2.0 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GDALDataset::Dereference()@Base" 2.2.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.2 1 + (c++)"GDALDataset::GetFileList()@Base" 2.2.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 2.2.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 2.2.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.2.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.2.0 1 + (c++)"GDALDataset::MarkAsShared()@Base" 2.2.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.2.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.2.0 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 2.2.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.2.0 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.2.0 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 2.2.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.2.0 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 2.2.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.2.0 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 2.2.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 2.2.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 2.2.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 2.2.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.2.0 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.2.0 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.2.0 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.2.0 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.2.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.2.0 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 2.2.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.2.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.2.0 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.2.0 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.2.0 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.2 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 2.2.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 2.2.0 1 + (c++)"GDALDataset::Release()@Base" 2.2.0 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.2 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.2 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.2.0 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriver()@Base" 2.2.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.2 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALDataset::Reference()@Base" 2.2.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.2.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.2.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.2.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.2.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.2.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.2.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.2.0 1 + (c++)"OGRGeometry::closeRings()@Base" 2.2.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 2.2.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 2.2.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 2.2.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.2 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.2 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 2.2.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.2 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 2.2.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.2 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 2.2.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.2 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.2.0 1 + (c++)"OGRGeometry::swapXY()@Base" 2.2.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.2.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.2.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.2.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.2.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.2.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.2.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.2.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.2.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 2.2.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 2.2.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.2.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.2.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.2.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.2.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.2.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 2.2.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 2.2.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 2.2.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 2.2.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 2.2.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 2.2.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 2.2.0 1 + (c++)"OGRStylePen::Parse()@Base" 2.2.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.2.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.2.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.2.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.2.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.2.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 2.2.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 2.2.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 2.2.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.2 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.2.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.2.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.2 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.2 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.2.0 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.2.0 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.2.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.2 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.2.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.2.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.2.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.2.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.2.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.2.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.2.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.2.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.2.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.2.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.2.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.2.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.2.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 2.2.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 2.2.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 2.2.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 2.2.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 2.2.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 2.2.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 2.2.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 2.2.0 1 + (c++)"OGRStyleTool::GetType()@Base" 2.2.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 2.2.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.2.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.2.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.2.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.2.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.2.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.2 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.2 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.2 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.2 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.2 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.2 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.2.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.2.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.2.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.2.0 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.2.0 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.2.0 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 2.2.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 2.2.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 2.2.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 2.2.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 2.2.0 1 + (c++)"CPLStringList::Sort()@Base" 2.2.0 1 + (c++)"CPLStringList::Clear()@Base" 2.2.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 2.2.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 2.2.0 1 + (c++)"CPLStringList::StealList()@Base" 2.2.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.2.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.2.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.2.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.2.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.2.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.2.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.2.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.2.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.2 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 2.2.0 1 + (c++)"CPLStringList::operator[](int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 2.2.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.2 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.2 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 2.2.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.2.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 2.2.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.2.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.2.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.2.0 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.2.0 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.2.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.2.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.2.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.2.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.2.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.2.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.2.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.2.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 2.2.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.2 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 2.2.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.2.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.2.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.2.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.2.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.2.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.2.0 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.2.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.2.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.2.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.2.0 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.2.0 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.2.0 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.2.0 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.2.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.2.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.2.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.2.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.2.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.2.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.2.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.2.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.2.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 2.2.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 2.2.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 2.2.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 2.2.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.2.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.2.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.2.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.2.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.2.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 2.2.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 2.2.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 2.2.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 2.2.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.2.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.2.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.2.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.2.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.2.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 2.2.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 2.2.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 2.2.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::Clear()@Base" 2.2.0 1 + (c++)"OGRStyleTable::Clone()@Base" 2.2.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.2.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.2.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.2.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.2.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 2.2.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 2.2.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"RawRasterBand::Initialize()@Base" 2.2.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.2.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 2.2.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 2.2.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 2.2.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 2.2.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 2.2.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.2.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 2.2.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 2.2.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 2.2.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 2.2.0 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 2.2.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 2.2.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.2.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.2.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.2 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.2 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 2.2.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 2.2.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.2.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 2.2.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 2.2.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 2.2.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 2.2.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.2.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.2.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.2.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.2.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.2.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.2.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.2.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.2.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 2.2.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 2.2.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 2.2.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 2.2.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 2.2.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 2.2.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 2.2.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.2.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.2.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.2.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.2.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 2.2.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 2.2.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 2.2.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 2.2.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 2.2.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 2.2.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 2.2.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 2.2.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 2.2.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.2.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.2.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.2.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.2.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 2.2.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 2.2.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.2.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.2.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.2.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.2.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 2.2.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 2.2.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 2.2.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 2.2.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 2.2.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 2.2.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 2.2.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 2.2.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.2.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.2.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.2.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.2.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.2.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.2.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.2.0 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 2.2.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 2.2.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 2.2.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.2.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 2.2.0 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 2.2.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 2.2.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.2.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.2.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.2.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.2.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.2.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.2.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 2.2.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 2.2.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.2.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.2.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.2.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.2.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::Release()@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.2.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.2.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 2.2.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.2 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.2.0 1 + (c++)"VSIFileManager::Get()@Base" 2.2.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.2.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.2.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.2.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.2.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.2 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.2 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 2.2.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 2.2.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.2.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.2.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.2.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.2.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.2.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 2.2.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.2.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.2.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.2.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.2.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.2.0 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::Write()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.2.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.2.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.2.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.2.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.2.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 2.2.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 2.2.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.2.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.2.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.2.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.2.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.2 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.2 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.2.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.2.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.2.0 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.2.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.2.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.2.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.2.0 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.2.0 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.2.0 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.2.0 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.2.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::GetBand()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.2.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.2.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.2.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.2 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.2.0 1 + (c++)"CPLODBCStatement::Clear()@Base" 2.2.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.2.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.2.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.2.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.2.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.2.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.2.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 2.2.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.2.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.2.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.2.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.2.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.2.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.2.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.2.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.2.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.2.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.2.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.2.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.2.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.2.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.2.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.2.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.2.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.2.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.2.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.2.0 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.2.0 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.2.0 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.2.0 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 2.2.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 2.2.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 2.2.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.2.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.2.0 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 2.2.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 2.2.0 1 + (c++)"VRTComplexSource::GetType()@Base" 2.2.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.2 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.2.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.2.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.2.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.2.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.2.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.2.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.2.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 2.2.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 2.2.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 2.2.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 2.2.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 2.2.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 2.2.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 2.2.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.2.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.2.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.2.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.2.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.2.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 2.2.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.2 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.2.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.2.0 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.2.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.2.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.2.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.2.0 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.2.0 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.2.0 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.2.0 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.2.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.2.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.2.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.2.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.2.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.2.0 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.2.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.2.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.2.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.2 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.2 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.2.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.2 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.2.0 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 2.2.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.2.0 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.2.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.2.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.2.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.2.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.2.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.2.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.2.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.2.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.2.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.2.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.2.0 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.2.0 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.2.0 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.2.0 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.2.0 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.2 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::Release()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.2.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.2.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.2.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.2.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.2.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.2 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.2.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.2.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.2 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.2 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.2 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.2.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.2 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::empty()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.2.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.2 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 2.2.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 2.2.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.2.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.2.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.2 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.2 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.2.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.2.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.2.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.2.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.2.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.2.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 2.2.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.2.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.2.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.2.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.2.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.2.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.2.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.2.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.2.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.2 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.2.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.2.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.2.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.2.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.2 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.2.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.2 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.2 1 + (c++)"CADArc::CADArc()@Base" 2.3.2 1 + (c++)"CADArc::CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADArc::~CADArc()@Base" 2.3.2 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADRay::CADRay()@Base" 2.3.2 1 + (c++)"CADRay::CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"CADRay::~CADRay()@Base" 2.3.2 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine()@Base" 2.3.2 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.2 1 + (c++)"CADLine::CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADLine::~CADLine()@Base" 2.3.2 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.2 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.2 1 + (c++)"CADText::setHeight(double)@Base" 2.3.2 1 + (c++)"CADText::CADText()@Base" 2.3.2 1 + (c++)"CADText::CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"CADText::~CADText()@Base" 2.3.2 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.2 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.2 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.2 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.2 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.2 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.2 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADImage::CADImage()@Base" 2.3.2 1 + (c++)"CADImage::CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADImage::~CADImage()@Base" 2.3.2 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.2 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.2 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.2 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.2 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.2 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.2 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.2 1 + (c++)"CADMText::CADMText()@Base" 2.3.2 1 + (c++)"CADMText::CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADMText::~CADMText()@Base" 2.3.2 1 + (c++)"CADSolid::getCorners()@Base" 2.3.2 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.2 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.2 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.2 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.2.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.2.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.2.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.2.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.2.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.2.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.2.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.2.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.2.0 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 2.2.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 2.2.0 1 + (c++)"OGRLayer::Dereference()@Base" 2.2.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 2.2.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 2.2.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 2.2.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.2.0 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 2.2.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 2.2.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 2.2.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 2.2.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.2.0 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.2.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.2 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.2 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 2.2.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 2.2.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 2.2.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 2.2.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 2.2.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 2.2.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 2.2.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 2.2.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 2.2.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 2.2.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.2.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 2.2.0 1 + (c++)"OGRLayer::end()@Base" 2.3.2 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRLayer::begin()@Base" 2.3.2 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRLayer::GetName()@Base" 2.2.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"OGRLayer::Reference()@Base" 2.2.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.2.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.2.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.2.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.2.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.2.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.2 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.2 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPoint::empty()@Base" 2.2.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.2 1 + (c++)"OGRPoint::swapXY()@Base" 2.2.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.2.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.2.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.2.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.2.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.2.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.2.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.2 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.2 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.2 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.2 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.2 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.2 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.2 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.2 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.2 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.2 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.2 1 + (c++)"CADFileIO::Close()@Base" 2.3.2 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.2 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.2 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.2 1 + (c++)"CADObject::setSize(long)@Base" 2.3.2 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.2 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.2 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.2 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.2 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.2 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.2 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.2 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.2 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.2 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.2 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.2 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.2 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.2 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.2 1 + (c++)"CADVector::setY(double)@Base" 2.3.2 1 + (c++)"CADVector::setZ(double)@Base" 2.3.2 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector()@Base" 2.3.2 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.2 1 + (c++)"CADVector::CADVector()@Base" 2.3.2 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.2 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.2 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 2.2.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 2.2.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 2.2.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 2.2.0 1 + (c++)"CPLString::tolower()@Base" 2.2.0 1 + (c++)"CPLString::toupper()@Base" 2.2.0 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag*)@Base" 2.2.0 1 + (c++)"CPLString::~CPLString()@Base" 2.2.0 1 + (c++)"CPLString::~CPLString()@Base" 2.2.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 2.2.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 2.2.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 2.2.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 2.2.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 2.2.0 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.2.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 2.2.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 2.2.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 2.2.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 2.2.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 2.2.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 2.2.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 2.2.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 2.2.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Reader::Open(int)@Base" 2.2.0 1 + (c++)"S57Reader::Close()@Base" 2.2.0 1 + (c++)"S57Reader::Ingest()@Base" 2.2.0 1 + (c++)"S57Reader::Rewind()@Base" 2.2.0 1 + (c++)"S57Reader::ReadDSID()@Base" 2.2.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 2.2.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 2.2.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 2.2.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 2.2.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.2.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.2.0 1 + (c++)"S57Reader::~S57Reader()@Base" 2.2.0 1 + (c++)"S57Reader::~S57Reader()@Base" 2.2.0 1 + (c++)"S57Writer::MakeRecord()@Base" 2.2.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 2.2.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.2.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 2.2.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Writer::Close()@Base" 2.2.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 2.2.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 2.2.0 1 + (c++)"S57Writer::S57Writer()@Base" 2.2.0 1 + (c++)"S57Writer::~S57Writer()@Base" 2.2.0 1 + (c++)"S57Writer::~S57Writer()@Base" 2.2.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.2 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 2.2.0 1 + (c++)"VRTSource::~VRTSource()@Base" 2.2.0 1 + (c++)"VRTSource::~VRTSource()@Base" 2.2.0 1 + (c++)"VRTSource::~VRTSource()@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, __va_list_tag*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.2 1 + (c++)"CADEllipse::print() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.2 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.2 1 + (c++)"CADPoint3D::print() const@Base" 2.3.2 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 2.2.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.2 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.2 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.2 1 + (c++)"OGRFeature::end() const@Base" 2.3.2 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.2 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::begin() const@Base" 2.3.2 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.2 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.2 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 2.2.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 2.2.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 2.2.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.2.0 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPolygon::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.2.0 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.2 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.2 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.2 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADGeometry::getType() const@Base" 2.3.2 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.2 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.2.0 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.2.0 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.2 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.2 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.2 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 2.2.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Polygonize() const@Base" 2.2.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 2.2.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 2.2.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 2.2.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.2.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.2.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 2.2.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 2.2.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 2.2.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 2.2.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 2.2.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 2.2.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 2.2.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 2.2.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 2.2.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 2.2.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 2.2.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 2.2.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 2.2.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.2 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.2 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.2.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.2.0 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.2.0 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 2.2.0 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.2 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.2 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.2 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.2 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 2.2.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 2.2.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 2.2.0 1 + (c++)"CPLStringList::Count() const@Base" 2.2.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 2.2.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.2.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 2.2.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRLineString::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.2.0 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.2.0 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.2.0 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.2.0 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRLineString::get_Area() const@Base" 2.2.0 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 2.2.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 2.2.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 2.2.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.2.0 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.2.0 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 2.2.0 1 + (c++)"OGRLinearRing::clone() const@Base" 2.2.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 2.2.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.2.0 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 2.2.0 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 2.2.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 2.2.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 2.2.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 2.2.0 1 + (c++)"GDALColorTable::Clone() const@Base" 2.2.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.2 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.2 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 2.2.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.2.0 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.2.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.2 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.2 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.2.0 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.2 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.2 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.2 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.2.0 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.2.0 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.2.0 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.2.0 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.2.0 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.2.0 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.2 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.2 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.2.0 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::Clone() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.2 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 2.2.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::clone() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.2.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 2.2.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.2 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 2.2.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 2.2.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.2 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.2 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.2 1 + (c++)"CADArc::print() const@Base" 2.3.2 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.2 1 + (c++)"CADRay::print() const@Base" 2.3.2 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.2 1 + (c++)"CADLine::getEnd() const@Base" 2.3.2 1 + (c++)"CADLine::getStart() const@Base" 2.3.2 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.2 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.2 1 + (c++)"CADText::print() const@Base" 2.3.2 1 + (c++)"CADText::getHeight() const@Base" 2.3.2 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.2 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.2 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.2 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.2 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.2 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.2 1 + (c++)"CADImage::print() const@Base" 2.3.2 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.2 1 + (c++)"CADMLine::getScale() const@Base" 2.3.2 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.2 1 + (c++)"CADMText::getExtents() const@Base" 2.3.2 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.2 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.2 1 + (c++)"CADMText::print() const@Base" 2.3.2 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.2 1 + (c++)"CADSolid::print() const@Base" 2.3.2 1 + (c++)"CADXLine::print() const@Base" 2.3.2 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.2.0 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.2 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.2 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.2.0 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.2 1 + (c++)"OGRCurve::end() const@Base" 2.3.2 1 + (c++)"OGRCurve::begin() const@Base" 2.3.2 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.2.0 1 + (c++)"OGRLayer::GetRefCount() const@Base" 2.2.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.2 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPoint::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPoint::clone() const@Base" 2.2.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.2 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.2 1 + (c++)"OGRPoint::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 2.2.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.2 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.2 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.2 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.2 1 + (c++)"CADAttrib::print() const@Base" 2.3.2 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.2 1 + (c++)"CADCircle::print() const@Base" 2.3.2 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.2 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.2 1 + (c++)"CADFace3D::print() const@Base" 2.3.2 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.2 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.2 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.2 1 + (c++)"CADObject::getSize() const@Base" 2.3.2 1 + (c++)"CADObject::getType() const@Base" 2.3.2 1 + (c++)"CADSpline::isRational() const@Base" 2.3.2 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.2 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.2 1 + (c++)"CADSpline::print() const@Base" 2.3.2 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.2 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.2 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.2 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.2 1 + (c++)"CADVector::getY() const@Base" 2.3.2 1 + (c++)"CADVector::getZ() const@Base" 2.3.2 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.2 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 2.2.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.2.0 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.2 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.2 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.2.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.2 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.2 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.3 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::vector, bool>, std::allocator, bool> > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::operator[](std::pair const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.2.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.2.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.2.0 1 + (c++)"std::pair::~pair()@Base" 2.2.0 1 + (c++)"std::pair::~pair()@Base" 2.2.0 1 + (c++)"std::pair > >::~pair()@Base" 2.2.0 1 + (c++)"std::pair > >::~pair()@Base" 2.2.0 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.2 1 + (c++)"std::vector >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRFeature*&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRSpatialReference*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(OGRCurve*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.2.0 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.2.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.2 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.2.0 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.2.0 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.2.0 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.2.0 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.2.0 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.3 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.3 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRGeomFieldDefn*&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(VSIFilesystemHandler* const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 2.2.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.2.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.3 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.3 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.2 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.2 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 2.2.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 2.2.0 1 + (c++)"typeinfo for MEMDataset@Base" 2.2.0 1 + (c++)"typeinfo for OGRFeature@Base" 2.2.0 1 + (c++)"typeinfo for OGRPolygon@Base" 2.2.0 1 + (c++)"typeinfo for OGRSurface@Base" 2.2.0 1 + (c++)"typeinfo for RawDataset@Base" 2.2.0 1 + (c++)"typeinfo for VRTDataset@Base" 2.2.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.2 1 + (c++)"typeinfo for GDALDataset@Base" 2.2.0 1 + (c++)"typeinfo for OGRGeometry@Base" 2.2.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 2.2.0 1 + (c++)"typeinfo for OGRStylePen@Base" 2.2.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 2.2.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 2.2.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.2 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.2 1 + (c++)"typeinfo for MEMRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for OGRDataSource@Base" 2.2.0 1 + (c++)"typeinfo for OGRLineString@Base" 2.2.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 2.2.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.2.0 1 + (c++)"typeinfo for OGRMultiPoint@Base" 2.2.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 2.2.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 2.2.0 1 + (c++)"typeinfo for RawRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 2.2.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 2.2.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 2.2.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.2.0 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 2.2.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 2.2.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 2.2.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.2.0 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 2.2.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.2.0 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 2.2.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 2.2.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.2 1 + (c++)"typeinfo for GDALProxyDataset@Base" 2.2.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.2.0 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.2.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 2.2.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.2.0 1 + (c++)"typeinfo for VRTComplexSource@Base" 2.2.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 2.2.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 2.2.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 2.2.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.2.0 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 2.2.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.2.0 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 2.2.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 2.2.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for OGRSpatialReference@Base" 2.2.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 2.2.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 2.2.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 2.2.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 2.2.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 2.2.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 2.2.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 2.2.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 2.2.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 2.2.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.2.0 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.2.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 2.2.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.2.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 2.2.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.2 1 + (c++)"typeinfo for CADRay@Base" 2.3.2 1 + (c++)"typeinfo for CPLErr@Base" 2.2.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.2 1 + (c++)"typeinfo for CADText@Base" 2.3.2 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.2 1 + (c++)"typeinfo for CADImage@Base" 2.3.2 1 + (c++)"typeinfo for CADMLine@Base" 2.3.2 1 + (c++)"typeinfo for CADMText@Base" 2.3.2 1 + (c++)"typeinfo for CADSolid@Base" 2.3.2 1 + (c++)"typeinfo for CADXLine@Base" 2.3.2 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 2.2.0 1 + (c++)"typeinfo for OGRLayer@Base" 2.2.0 1 + (c++)"typeinfo for OGRPoint@Base" 2.2.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.2 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.2 1 + (c++)"typeinfo for CADCircle@Base" 2.3.2 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.2 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.2 1 + (c++)"typeinfo for CADObject@Base" 2.3.2 1 + (c++)"typeinfo for CADSpline@Base" 2.3.2 1 + (c++)"typeinfo for CPLString@Base" 2.2.0 1 + (c++)"typeinfo for VRTSource@Base" 2.2.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.2.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.2 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.2 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.2 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 2.2.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 2.2.0 1 + (c++)"typeinfo name for MEMDataset@Base" 2.2.0 1 + (c++)"typeinfo name for OGRFeature@Base" 2.2.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 2.2.0 1 + (c++)"typeinfo name for OGRSurface@Base" 2.2.0 1 + (c++)"typeinfo name for RawDataset@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDataset@Base" 2.2.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.2 1 + (c++)"typeinfo name for GDALDataset@Base" 2.2.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 2.2.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 2.2.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 2.2.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 2.2.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 2.2.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.2 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.2 1 + (c++)"typeinfo name for MEMRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 2.2.0 1 + (c++)"typeinfo name for OGRLineString@Base" 2.2.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 2.2.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.2.0 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 2.2.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 2.2.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 2.2.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 2.2.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 2.2.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 2.2.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.2.0 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 2.2.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 2.2.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 2.2.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.2.0 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 2.2.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.2.0 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 2.2.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 2.2.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.2 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.2.0 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.2.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 2.2.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.2.0 1 + (c++)"typeinfo name for VRTComplexSource@Base" 2.2.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 2.2.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 2.2.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 2.2.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.2.0 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 2.2.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.2.0 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 2.2.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 2.2.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 2.2.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 2.2.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 2.2.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 2.2.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 2.2.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 2.2.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 2.2.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 2.2.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 2.2.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 2.2.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.2.0 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 2.2.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.2.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 2.2.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.2 1 + (c++)"typeinfo name for CADRay@Base" 2.3.2 1 + (c++)"typeinfo name for CPLErr@Base" 2.2.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.2 1 + (c++)"typeinfo name for CADText@Base" 2.3.2 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.2 1 + (c++)"typeinfo name for CADImage@Base" 2.3.2 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.2 1 + (c++)"typeinfo name for CADMText@Base" 2.3.2 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.2 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.2 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 2.2.0 1 + (c++)"typeinfo name for OGRLayer@Base" 2.2.0 1 + (c++)"typeinfo name for OGRPoint@Base" 2.2.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.2 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.2 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.2 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.2 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.2 1 + (c++)"typeinfo name for CADObject@Base" 2.3.2 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.2 1 + (c++)"typeinfo name for CPLString@Base" 2.2.0 1 + (c++)"typeinfo name for VRTSource@Base" 2.2.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.2.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.2 1 + (c++)"vtable for CADPoint3D@Base" 2.3.2 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 2.2.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 2.2.0 1 + (c++)"vtable for MEMDataset@Base" 2.2.0 1 + (c++)"vtable for OGRFeature@Base" 2.2.0 1 + (c++)"vtable for OGRPolygon@Base" 2.2.0 1 + (c++)"vtable for OGRSurface@Base" 2.2.0 1 + (c++)"vtable for RawDataset@Base" 2.2.0 1 + (c++)"vtable for VRTDataset@Base" 2.2.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.2 1 + (c++)"vtable for GDALDataset@Base" 2.2.0 1 + (c++)"vtable for OGRGeometry@Base" 2.2.0 1 + (c++)"vtable for OGRSFDriver@Base" 2.2.0 1 + (c++)"vtable for OGRStylePen@Base" 2.2.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 2.2.0 1 + (c++)"vtable for OGRStyleTool@Base" 2.2.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.2 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.2 1 + (c++)"vtable for MEMRasterBand@Base" 2.2.0 1 + (c++)"vtable for OGRDataSource@Base" 2.2.0 1 + (c++)"vtable for OGRLineString@Base" 2.2.0 1 + (c++)"vtable for OGRLinearRing@Base" 2.2.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.2.0 1 + (c++)"vtable for OGRMultiPoint@Base" 2.2.0 1 + (c++)"vtable for OGRStyleBrush@Base" 2.2.0 1 + (c++)"vtable for OGRStyleLabel@Base" 2.2.0 1 + (c++)"vtable for RawRasterBand@Base" 2.2.0 1 + (c++)"vtable for VRTRasterBand@Base" 2.2.0 1 + (c++)"vtable for GDALPamDataset@Base" 2.2.0 1 + (c++)"vtable for GDALRasterBand@Base" 2.2.0 1 + (c++)"vtable for GDALWarpKernel@Base" 2.2.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 2.2.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.2.0 1 + (c++)"vtable for OGRStyleSymbol@Base" 2.2.0 1 + (c++)"vtable for GDALAsyncReader@Base" 2.2.0 1 + (c++)"vtable for GDALMajorObject@Base" 2.2.0 1 + (c++)"vtable for GDALRasterBlock@Base" 2.2.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.2.0 1 + (c++)"vtable for OGRMultiPolygon@Base" 2.2.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.2.0 1 + (c++)"vtable for OGRMutexedLayer@Base" 2.2.0 1 + (c++)"vtable for VRTSimpleSource@Base" 2.2.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.2 1 + (c++)"vtable for GDALProxyDataset@Base" 2.2.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.2.0 1 + (c++)"vtable for OGREditableLayer@Base" 2.2.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 2.2.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.2.0 1 + (c++)"vtable for VRTComplexSource@Base" 2.2.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 2.2.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 2.2.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 2.2.0 1 + (c++)"vtable for GDALDriverManager@Base" 2.2.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 2.2.0 1 + (c++)"vtable for GDALWarpOperation@Base" 2.2.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.2.0 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 2.2.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.2.0 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 2.2.0 1 + (c++)"vtable for OGRMultiLineString@Base" 2.2.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.2.0 1 + (c++)"vtable for GDALProxyRasterBand@Base" 2.2.0 1 + (c++)"vtable for OGRSpatialReference@Base" 2.2.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 2.2.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 2.2.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 2.2.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 2.2.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 2.2.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 2.2.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 2.2.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.2 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 2.2.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 2.2.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 2.2.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 2.2.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.2.0 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.2 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.2.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.2.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.2 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 2.2.0 1 + (c++)"vtable for CADArc@Base" 2.3.2 1 + (c++)"vtable for CADRay@Base" 2.3.2 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.2 1 + (c++)"vtable for CADText@Base" 2.3.2 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.2 1 + (c++)"vtable for CADImage@Base" 2.3.2 1 + (c++)"vtable for CADMLine@Base" 2.3.2 1 + (c++)"vtable for CADMText@Base" 2.3.2 1 + (c++)"vtable for CADSolid@Base" 2.3.2 1 + (c++)"vtable for CADXLine@Base" 2.3.2 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 2.2.0 1 + (c++)"vtable for OGRLayer@Base" 2.2.0 1 + (c++)"vtable for OGRPoint@Base" 2.2.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.2 1 + (c++)"vtable for CADAttrib@Base" 2.3.2 1 + (c++)"vtable for CADCircle@Base" 2.3.2 1 + (c++)"vtable for CADFace3D@Base" 2.3.2 1 + (c++)"vtable for CADFileIO@Base" 2.3.2 1 + (c++)"vtable for CADSpline@Base" 2.3.2 1 + (c++)"vtable for VRTSource@Base" 2.2.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.2 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.2 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.2 1 diff --git a/gdal/debian/libgdal20.symbols.ppc64 b/gdal/debian/libgdal20.symbols.ppc64 new file mode 100644 index 000000000000..7dd7d543fabf --- /dev/null +++ b/gdal/debian/libgdal20.symbols.ppc64 @@ -0,0 +1,4717 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, char*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.0 1 + (c++)"PamCleanProxyDB()@Base" 1.10.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.2 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.2 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.0 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.2 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.2 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.2 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.2 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.2 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.2 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.2 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.2 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.2 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.2 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.0 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.2 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.2 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.2 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.2 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.0 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.2 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.2 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.2 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.2 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.2 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::Reference()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.2 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.2 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::Sort()@Base" 1.10.0 1 + (c++)"CPLStringList::Clear()@Base" 1.10.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.0 1 + (c++)"CPLStringList::StealList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.2 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 1.10.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.0 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 1.10.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.2 1 + (c++)"VSIFileManager::Get()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetName()@Base" 1.10.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.0 1 + (c++)"OGRPoint::empty()@Base" 1.10.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.0 1 + (c++)"CPLString::tolower()@Base" 1.10.0 1 + (c++)"CPLString::toupper()@Base" 1.10.0 1 + (c++)"CPLString::vPrintf(char const*, char*)@Base" 1.10.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.0 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Reader::Open(int)@Base" 1.10.0 1 + (c++)"S57Reader::Close()@Base" 1.10.0 1 + (c++)"S57Reader::Ingest()@Base" 1.10.0 1 + (c++)"S57Reader::Rewind()@Base" 1.10.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::Close()@Base" 1.10.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, char*), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.0 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::Count() const@Base" 1.10.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.2 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.2 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.2 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.0 1 + (c++)"OGRPoint::clone() const@Base" 1.10.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 1.10.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.2 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.4.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair::~pair()@Base" 1.10.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::pair >&, true>(CPLString&, std::vector >&)@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::~vector()@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.2 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRFeature*&&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(OGRSpatialReference*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(OGRCurve*&&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 1.10.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 1.10.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 1.10.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRGeomFieldDefn*&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(VSIFilesystemHandler* const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator const, CPLString> > std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, CPLString> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.0 1 + (c++)"vtable for MEMDataset@Base" 1.10.0 1 + (c++)"vtable for OGRFeature@Base" 1.10.0 1 + (c++)"vtable for OGRPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRSurface@Base" 1.10.0 1 + (c++)"vtable for RawDataset@Base" 1.10.0 1 + (c++)"vtable for VRTDataset@Base" 1.10.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.10.0 1 + (c++)"vtable for OGRGeometry@Base" 1.10.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.0 1 + (c++)"vtable for OGRStylePen@Base" 1.10.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRDataSource@Base" 1.10.0 1 + (c++)"vtable for OGRLineString@Base" 1.10.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.0 1 + (c++)"vtable for RawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.2 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.2 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.2 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.0 1 + (c++)"vtable for OGRLayer@Base" 1.10.0 1 + (c++)"vtable for OGRPoint@Base" 1.10.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.ppc64el b/gdal/debian/libgdal20.symbols.ppc64el new file mode 100644 index 000000000000..7ede283307cd --- /dev/null +++ b/gdal/debian/libgdal20.symbols.ppc64el @@ -0,0 +1,4788 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, char*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.1 1 + (c++)"PamCleanProxyDB()@Base" 1.10.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.1 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.1 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.1 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.1 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.1 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::Sort()@Base" 1.10.1 1 + (c++)"CPLStringList::Clear()@Base" 1.10.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::StealList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.1 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 1.10.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 1.10.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.1 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.1 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.1 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.10.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRPoint::empty()@Base" 1.10.1 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.1 1 + (c++)"CPLString::tolower()@Base" 1.10.1 1 + (c++)"CPLString::toupper()@Base" 1.10.1 1 + (c++)"CPLString::vPrintf(char const*, char*)@Base" 1.10.1 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::Open(int)@Base" 1.10.1 1 + (c++)"S57Reader::Close()@Base" 1.10.1 1 + (c++)"S57Reader::Ingest()@Base" 1.10.1 1 + (c++)"S57Reader::Rewind()@Base" 1.10.1 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::Close()@Base" 1.10.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, char*), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.1 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.1 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::Count() const@Base" 1.10.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.1 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.1 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.1 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.1 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPoint::clone() const@Base" 1.10.1 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.1 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 1.10.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.2 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.1 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.1 1 + (c++)"vtable for MEMDataset@Base" 1.10.1 1 + (c++)"vtable for OGRFeature@Base" 1.10.1 1 + (c++)"vtable for OGRPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRSurface@Base" 1.10.1 1 + (c++)"vtable for RawDataset@Base" 1.10.1 1 + (c++)"vtable for VRTDataset@Base" 1.10.1 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.10.1 1 + (c++)"vtable for OGRGeometry@Base" 1.10.1 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.1 1 + (c++)"vtable for OGRStylePen@Base" 1.10.1 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.1 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRDataSource@Base" 1.10.1 1 + (c++)"vtable for OGRLineString@Base" 1.10.1 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.1 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.1 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.1 1 + (c++)"vtable for RawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.1 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.1 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.1 1 + (c++)"vtable for OGRLayer@Base" 1.10.1 1 + (c++)"vtable for OGRPoint@Base" 1.10.1 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.riscv64 b/gdal/debian/libgdal20.symbols.riscv64 new file mode 100644 index 000000000000..d00cb6c820b0 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.riscv64 @@ -0,0 +1,4794 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.3.1 1 + (c++)"GetVersion()@Base" 2.3.1 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.3.1 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.3.1 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.3.1 1 + (c++)"PamGetProxy(char const*)@Base" 2.3.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.3.1 1 + (c++)"GetCADFormats()@Base" 2.3.1 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 2.3.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.3.1 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.3.1 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 2.3.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 2.3.1 1 + (c++)"PamCleanProxyDB()@Base" 2.3.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.3.1 1 + (c++)"GetLastErrorCode()@Base" 2.3.1 1 + (c++)"GetVersionString()@Base" 2.3.1 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 2.3.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 2.3.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.3.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.3.1 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.3.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 2.3.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.3.1 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.1 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 2.3.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 2.3.1 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.1 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 2.3.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.3.1 1 + (c++)"OGRInitializeXerces()@Base" 2.3.1 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.3.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 2.3.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.3.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 2.3.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.3.1 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.3.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 2.3.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 2.3.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.3.1 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.3.1 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.3.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.3.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.1 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.3.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.3.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.3.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.1 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 2.3.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.1 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 2.3.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.3.1 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 2.3.1 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.1 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 2.3.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 2.3.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 2.3.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 2.3.1 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.1 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.3.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.3.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.1 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 2.3.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.3.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.3.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.1 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.1 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.3.1 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 2.3.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.3.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.3.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.3.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.3.1 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.1 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.1 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.1 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.1 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.1 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.3.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.3.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.3.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.3.1 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.3.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.3.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.3.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.3.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.3.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.3.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.3.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.3.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 2.3.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 2.3.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 2.3.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 2.3.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.3.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.3.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 2.3.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 2.3.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 2.3.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 2.3.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 2.3.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.3.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.3.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.3.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.3.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.3.1 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.3.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.3.1 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 2.3.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 2.3.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.3.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.3.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.3.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.3.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.1 1 + (c++)"OGRFeature::UnsetField(int)@Base" 2.3.1 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.1 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 2.3.1 1 + (c++)"OGRFeature::StealGeometry()@Base" 2.3.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 2.3.1 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.3.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.1 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.3.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.3.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.3.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.3.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.1 1 + (c++)"OGRPolygon::closeRings()@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 2.3.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 2.3.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 2.3.1 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 2.3.1 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.3.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.3.1 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.3.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.3.1 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.3.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.3.1 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.1 1 + (c++)"VRTDataset::FlushCache()@Base" 2.3.1 1 + (c++)"VRTDataset::GetFileList()@Base" 2.3.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.3.1 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 2.3.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 2.3.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.3.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 2.3.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.1 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.3.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.3.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.3.1 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.1 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.1 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.1 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.3.1 1 + (c++)"GDALDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.3.1 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.3.1 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.3.1 1 + (c++)"GDALDataset::Dereference()@Base" 2.3.1 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.1 1 + (c++)"GDALDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 2.3.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.3.1 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 2.3.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.3.1 1 + (c++)"GDALDataset::ResetReading()@Base" 2.3.1 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.3.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.3.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 2.3.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterCount()@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 2.3.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 2.3.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.3.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 2.3.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.3.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 2.3.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.3.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.3.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.3.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.3.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.3.1 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.3.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 2.3.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.3.1 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.3.1 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.3.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.3.1 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.1 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALDataset::Release()@Base" 2.3.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.1 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.3.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.3.1 1 + (c++)"GDALDataset::GetDriver()@Base" 2.3.1 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.1 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALDataset::Reference()@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.3.1 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.3.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.3.1 1 + (c++)"OGRGeometry::closeRings()@Base" 2.3.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.1 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.1 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 2.3.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.1 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.3.1 1 + (c++)"OGRGeometry::swapXY()@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.3.1 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.3.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.3.1 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 2.3.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 2.3.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.3.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.3.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.3.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.3.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 2.3.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 2.3.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 2.3.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 2.3.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 2.3.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStylePen::Parse()@Base" 2.3.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.3.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.3.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.3.1 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.3.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.3.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.1 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.1 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.3.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.3.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.3.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.3.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.3.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 2.3.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 2.3.1 1 + (c++)"OGRStyleTool::GetType()@Base" 2.3.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.3.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.3.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.3.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.3.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.3.1 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.3.1 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.3.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.3.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.3.1 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.1 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.1 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.1 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.1 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.1 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.1 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.3.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.3.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.3.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 2.3.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 2.3.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 2.3.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 2.3.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::Sort()@Base" 2.3.1 1 + (c++)"CPLStringList::Clear()@Base" 2.3.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 2.3.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 2.3.1 1 + (c++)"CPLStringList::StealList()@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.3.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.3.1 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.1 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 2.3.1 1 + (c++)"CPLStringList::operator[](int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.3.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.3.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.3.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.3.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 2.3.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.3.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.3.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.3.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.3.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.3.1 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.3.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::closeRings()@Base" 2.3.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 2.3.1 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.3.1 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.3.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.3.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.3.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.3.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.3.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.3.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 2.3.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 2.3.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 2.3.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::Clear()@Base" 2.3.1 1 + (c++)"OGRStyleTable::Clone()@Base" 2.3.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.3.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.3.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.3.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.3.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 2.3.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"RawRasterBand::Initialize()@Base" 2.3.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.3.1 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.3.1 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 2.3.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 2.3.1 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 2.3.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 2.3.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.3.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.3.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 2.3.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.3.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.3.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.3.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.3.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 2.3.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 2.3.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 2.3.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.3.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 2.3.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.3.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.3.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 2.3.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 2.3.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.3.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.3.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.3.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.3.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 2.3.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 2.3.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 2.3.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.3.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.3.1 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 2.3.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.3.1 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 2.3.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.3.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::Release()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.3.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 2.3.1 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.1 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.3.1 1 + (c++)"VSIFileManager::Get()@Base" 2.3.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.3.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.3.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.3.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.1 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.1 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 2.3.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 2.3.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Internalize()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Touch()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Write()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.3.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.3.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.3.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.3.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.3.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.3.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.3.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetName()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.3.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::GetType()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.3.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.3.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 2.3.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.3.1 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.3.1 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.3.1 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.3.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.3.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.3.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.3.1 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.3.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.3.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.3.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.3.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 2.3.1 1 + (c++)"VRTComplexSource::GetType()@Base" 2.3.1 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.3.1 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.3.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.3.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::Flush()@Base" 2.3.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 2.3.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 2.3.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 2.3.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 2.3.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 2.3.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 2.3.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.1 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.3.1 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.3.1 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.3.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.3.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.3.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.3.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.3.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.3.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.3.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.3.1 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Release()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.3.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.3.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.3.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.3.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.3.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.3.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 2.3.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.1 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.3.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.3.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.3.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.3.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.3.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.3.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.3.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.3.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.3.1 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.3.1 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.3.1 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.3.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.3.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.3.1 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.3.1 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.3.1 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.1 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.1 1 + (c++)"CADArc::CADArc()@Base" 2.3.1 1 + (c++)"CADArc::CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADArc::~CADArc()@Base" 2.3.1 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADRay::CADRay()@Base" 2.3.1 1 + (c++)"CADRay::CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"CADRay::~CADRay()@Base" 2.3.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.3.1 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.3.1 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.3.1 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.3.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.3.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.3.1 1 + (c++)"CADFile::~CADFile()@Base" 2.3.1 1 + (c++)"CADFile::~CADFile()@Base" 2.3.1 1 + (c++)"CADFile::~CADFile()@Base" 2.3.1 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine()@Base" 2.3.1 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.1 1 + (c++)"CADLine::CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADLine::~CADLine()@Base" 2.3.1 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.1 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.1 1 + (c++)"CADText::setHeight(double)@Base" 2.3.1 1 + (c++)"CADText::CADText()@Base" 2.3.1 1 + (c++)"CADText::CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"CADText::~CADText()@Base" 2.3.1 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.3.1 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.3.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.3.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.3.1 1 + (c++)"CADClass::CADClass()@Base" 2.3.1 1 + (c++)"CADClass::CADClass()@Base" 2.3.1 1 + (c++)"CADClass::~CADClass()@Base" 2.3.1 1 + (c++)"CADClass::~CADClass()@Base" 2.3.1 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.1 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.1 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.1 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.1 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.1 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.1 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADImage::CADImage()@Base" 2.3.1 1 + (c++)"CADImage::CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADImage::~CADImage()@Base" 2.3.1 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.3.1 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.3.1 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.3.1 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.3.1 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.3.1 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.3.1 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.3.1 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.3.1 1 + (c++)"CADLayer::setOn(bool)@Base" 2.3.1 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.3.1 1 + (c++)"CADLayer::setColor(short)@Base" 2.3.1 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.3.1 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.3.1 1 + (c++)"CADLayer::setHandle(long)@Base" 2.3.1 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.3.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.3.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.3.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.3.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.3.1 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.1 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.1 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.1 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.1 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.1 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.1 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.1 1 + (c++)"CADMText::CADMText()@Base" 2.3.1 1 + (c++)"CADMText::CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADMText::~CADMText()@Base" 2.3.1 1 + (c++)"CADSolid::getCorners()@Base" 2.3.1 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.1 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.1 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.1 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.3.1 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.3.1 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.3.1 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.3.1 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.3.1 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.3.1 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.3.1 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.3.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.3.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.3.1 1 + (c++)"GNMGraph::Clear()@Base" 2.3.1 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.3.1 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.3.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.3.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.3.1 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.3.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.3.1 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 2.3.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 2.3.1 1 + (c++)"OGRLayer::Dereference()@Base" 2.3.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 2.3.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 2.3.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 2.3.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.3.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 2.3.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 2.3.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 2.3.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.3.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.1 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 2.3.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 2.3.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 2.3.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.3.1 1 + (c++)"OGRLayer::StartTransaction()@Base" 2.3.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 2.3.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 2.3.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 2.3.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.3.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 2.3.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.3.1 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 2.3.1 1 + (c++)"OGRLayer::end()@Base" 2.3.1 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.1 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::GetName()@Base" 2.3.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"OGRLayer::Reference()@Base" 2.3.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.3.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.3.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 2.3.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.1 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.1 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 2.3.1 1 + (c++)"OGRPoint::empty()@Base" 2.3.1 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.1 1 + (c++)"OGRPoint::swapXY()@Base" 2.3.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.3.1 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.3.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.3.1 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.1 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.1 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.1 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.1 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.1 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.1 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.1 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.1 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.1 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.1 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.1 1 + (c++)"CADFileIO::Close()@Base" 2.3.1 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.1 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.1 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.3.1 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.3.1 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.3.1 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.3.1 1 + (c++)"CADHeader::getValueName(short)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.3.1 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.3.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.3.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.3.1 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.1 1 + (c++)"CADObject::setSize(long)@Base" 2.3.1 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.1 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.1 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.1 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.1 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.1 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.1 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.1 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.1 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.1 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.1 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.1 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.1 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.1 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.3.1 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.3.1 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.3.1 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.3.1 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.3.1 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.3.1 1 + (c++)"CADTables::CADTables()@Base" 2.3.1 1 + (c++)"CADTables::CADTables()@Base" 2.3.1 1 + (c++)"CADVector::setX(double)@Base" 2.3.1 1 + (c++)"CADVector::setY(double)@Base" 2.3.1 1 + (c++)"CADVector::setZ(double)@Base" 2.3.1 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector()@Base" 2.3.1 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.1 1 + (c++)"CADVector::CADVector()@Base" 2.3.1 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.1 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.3.1 1 + (c++)"CPLString::Trim()@Base" 2.3.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 2.3.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 2.3.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 2.3.1 1 + (c++)"CPLString::tolower()@Base" 2.3.1 1 + (c++)"CPLString::toupper()@Base" 2.3.1 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 2.3.1 1 + (c++)"CPLString::~CPLString()@Base" 2.3.1 1 + (c++)"CPLString::~CPLString()@Base" 2.3.1 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 2.3.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 2.3.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 2.3.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 2.3.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 2.3.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.3.1 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 2.3.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 2.3.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 2.3.1 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 2.3.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 2.3.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 2.3.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 2.3.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Reader::Open(int)@Base" 2.3.1 1 + (c++)"S57Reader::Close()@Base" 2.3.1 1 + (c++)"S57Reader::Ingest()@Base" 2.3.1 1 + (c++)"S57Reader::Rewind()@Base" 2.3.1 1 + (c++)"S57Reader::ReadDSID()@Base" 2.3.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 2.3.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 2.3.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 2.3.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 2.3.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.3.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.3.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.3.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.3.1 1 + (c++)"S57Writer::MakeRecord()@Base" 2.3.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 2.3.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.3.1 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 2.3.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Writer::Close()@Base" 2.3.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 2.3.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 2.3.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.3.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.3.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.3.1 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.1 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.3.1 1 + (c++)"VRTSource::IsSimpleSource()@Base" 2.3.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.3.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.3.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, void*), unsigned long, char const*, ...)@Base" 2.3.1 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.3.1 1 + (c++)"CADClasses::print() const@Base" 2.3.1 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.1 1 + (c++)"CADEllipse::print() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.1 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.1 1 + (c++)"CADPoint3D::print() const@Base" 2.3.1 1 + (c++)"CADVariant::getDecimal() const@Base" 2.3.1 1 + (c++)"CADVariant::getX() const@Base" 2.3.1 1 + (c++)"CADVariant::getY() const@Base" 2.3.1 1 + (c++)"CADVariant::getZ() const@Base" 2.3.1 1 + (c++)"CADVariant::getReal() const@Base" 2.3.1 1 + (c++)"CADVariant::getType() const@Base" 2.3.1 1 + (c++)"CADVariant::getHandle() const@Base" 2.3.1 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 2.3.1 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.3.1 1 + (c++)"GNMNetwork::GetName() const@Base" 2.3.1 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 2.3.1 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.1 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.1 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.1 1 + (c++)"OGRFeature::end() const@Base" 2.3.1 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.1 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::begin() const@Base" 2.3.1 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.1 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.1 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 2.3.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 2.3.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.3.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPolygon::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.3.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.1 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.1 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.1 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADGeometry::getType() const@Base" 2.3.1 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.1 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.3.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.1 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.1 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.1 1 + (c++)"GDALDataset::GetShared() const@Base" 2.3.1 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 2.3.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::exportToJson() const@Base" 2.3.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 2.3.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.3.1 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 2.3.1 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.3.1 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.3.1 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 2.3.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 2.3.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 2.3.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 2.3.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.3.1 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 2.3.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 2.3.1 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.1 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.1 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.3.1 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.3.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.3.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 2.3.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.1 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.1 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.1 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.1 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 2.3.1 1 + (c++)"CPLStringList::Count() const@Base" 2.3.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 2.3.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.3.1 1 + (c++)"CPLStringList::operator[](int) const@Base" 2.3.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.3.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRLineString::get_Area() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::clone() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 2.3.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 2.3.1 1 + (c++)"GDALColorTable::Clone() const@Base" 2.3.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.1 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.3.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.3.1 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 2.3.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.3.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.1 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.1 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.3.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.1 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.1 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.1 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.3.1 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.3.1 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.3.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.3.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.3.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.3.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.3.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.3.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.3.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.3.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Clone() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 2.3.1 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 2.3.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.3.1 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.3.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 2.3.1 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.1 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 2.3.1 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 2.3.1 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.1 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.1 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.1 1 + (c++)"CADArc::print() const@Base" 2.3.1 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.1 1 + (c++)"CADRay::print() const@Base" 2.3.1 1 + (c++)"CADFile::getClasses() const@Base" 2.3.1 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.3.1 1 + (c++)"CADFile::getHeader() const@Base" 2.3.1 1 + (c++)"CADFile::getTables() const@Base" 2.3.1 1 + (c++)"CADLine::print() const@Base" 2.3.1 1 + (c++)"CADLine::getEnd() const@Base" 2.3.1 1 + (c++)"CADLine::getStart() const@Base" 2.3.1 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.1 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.1 1 + (c++)"CADText::print() const@Base" 2.3.1 1 + (c++)"CADText::getHeight() const@Base" 2.3.1 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.3.1 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.3.1 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.3.1 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.3.1 1 + (c++)"GNMRule::c_str() const@Base" 2.3.1 1 + (c++)"GNMRule::GetType() const@Base" 2.3.1 1 + (c++)"GNMRule::IsValid() const@Base" 2.3.1 1 + (c++)"GNMRule::operator char const*() const@Base" 2.3.1 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.1 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.1 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.1 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.1 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.1 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.1 1 + (c++)"CADImage::print() const@Base" 2.3.1 1 + (c++)"CADLayer::getPlotting() const@Base" 2.3.1 1 + (c++)"CADLayer::getImageCount() const@Base" 2.3.1 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.3.1 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.3.1 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.3.1 1 + (c++)"CADLayer::getId() const@Base" 2.3.1 1 + (c++)"CADLayer::getOn() const@Base" 2.3.1 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADLayer::getColor() const@Base" 2.3.1 1 + (c++)"CADLayer::getFrozen() const@Base" 2.3.1 1 + (c++)"CADLayer::getHandle() const@Base" 2.3.1 1 + (c++)"CADLayer::getLocked() const@Base" 2.3.1 1 + (c++)"CADMLine::print() const@Base" 2.3.1 1 + (c++)"CADMLine::getScale() const@Base" 2.3.1 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.1 1 + (c++)"CADMText::getExtents() const@Base" 2.3.1 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.1 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.1 1 + (c++)"CADMText::print() const@Base" 2.3.1 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.1 1 + (c++)"CADSolid::print() const@Base" 2.3.1 1 + (c++)"CADXLine::print() const@Base" 2.3.1 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.3.1 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.3.1 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.3.1 1 + (c++)"OGRCurve::getDimension() const@Base" 2.3.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.1 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.1 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.1 1 + (c++)"OGRCurve::end() const@Base" 2.3.1 1 + (c++)"OGRCurve::begin() const@Base" 2.3.1 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.3.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 2.3.1 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.1 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.3.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 2.3.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 2.3.1 1 + (c++)"OGRPoint::getDimension() const@Base" 2.3.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 2.3.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 2.3.1 1 + (c++)"OGRPoint::clone() const@Base" 2.3.1 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.3.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.1 1 + (c++)"OGRPoint::IsEmpty() const@Base" 2.3.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 2.3.1 1 + (c++)"CADAttdef::print() const@Base" 2.3.1 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.1 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.1 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.1 1 + (c++)"CADAttrib::print() const@Base" 2.3.1 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.1 1 + (c++)"CADCircle::print() const@Base" 2.3.1 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.1 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.1 1 + (c++)"CADFace3D::print() const@Base" 2.3.1 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.1 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.1 1 + (c++)"CADHandle::isNull() const@Base" 2.3.1 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.3.1 1 + (c++)"CADHandle::getAsLong() const@Base" 2.3.1 1 + (c++)"CADHeader::print() const@Base" 2.3.1 1 + (c++)"CADHeader::getCode(int) const@Base" 2.3.1 1 + (c++)"CADHeader::getSize() const@Base" 2.3.1 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.3.1 1 + (c++)"CADObject::getCRC() const@Base" 2.3.1 1 + (c++)"CADObject::getSize() const@Base" 2.3.1 1 + (c++)"CADObject::getType() const@Base" 2.3.1 1 + (c++)"CADSpline::isRational() const@Base" 2.3.1 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.1 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.1 1 + (c++)"CADSpline::print() const@Base" 2.3.1 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.1 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.1 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.1 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.3.1 1 + (c++)"CADVector::getX() const@Base" 2.3.1 1 + (c++)"CADVector::getY() const@Base" 2.3.1 1 + (c++)"CADVector::getZ() const@Base" 2.3.1 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.1 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 2.3.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.3.1 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.3.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.3.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.3.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.3.1 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.1 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.1 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.1 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.1 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.3.1 1 + (c++)"std::__shared_count<(__gnu_cxx::_Lock_policy)1>::__shared_count(MVTTileLayer*)@Base" 2.3.1 1 + (c++)"std::__shared_count<(__gnu_cxx::_Lock_policy)1>::__shared_count(MVTTileLayerFeature*)@Base" 2.4.1 1 + (c++)"std::__shared_count<(__gnu_cxx::_Lock_policy)1>::__shared_count(MVTTileLayer*)@Base" 2.3.1 1 + (c++)"std::__shared_count<(__gnu_cxx::_Lock_policy)1>::__shared_count(MVTTileLayerFeature*)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>::_M_destroy()@Base" 2.3.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>::_M_release()@Base" 2.3.1 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.3.1 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.3.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.3.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.3.1 1 + (c++)"std::pair::~pair()@Base" 2.3.1 1 + (c++)"std::pair::~pair()@Base" 2.3.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.3.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.1 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.3.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.3.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"std::vector >::~vector()@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.3.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.3.1 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.1 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.3.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.3.1 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.3.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.3.1 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.3.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.3.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.3.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.3.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.3.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.3.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.1 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.1 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.1 1 + (c++)"typeinfo for CADXRecord@Base" 2.3.1 1 + (c++)"typeinfo for GDALDriver@Base" 2.3.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.3.1 1 + (c++)"typeinfo for IGMLReader@Base" 2.3.1 1 + (c++)"typeinfo for MEMDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRFeature@Base" 2.3.1 1 + (c++)"typeinfo for OGRPolygon@Base" 2.3.1 1 + (c++)"typeinfo for OGRSurface@Base" 2.3.1 1 + (c++)"typeinfo for RawDataset@Base" 2.3.1 1 + (c++)"typeinfo for VRTDataset@Base" 2.3.1 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.1 1 + (c++)"typeinfo for GDALDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRGeometry@Base" 2.3.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 2.3.1 1 + (c++)"typeinfo for OGRStylePen@Base" 2.3.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.3.1 1 + (c++)"typeinfo for OGRAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 2.3.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.3.1 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.1 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.1 1 + (c++)"typeinfo for MEMRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for OGRDataSource@Base" 2.3.1 1 + (c++)"typeinfo for OGRLineString@Base" 2.3.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 2.3.1 1 + (c++)"typeinfo for RawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 2.3.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 2.3.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 2.3.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 2.3.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 2.3.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 2.3.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 2.3.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.3.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 2.3.1 1 + (c++)"typeinfo for VRTSimpleSource@Base" 2.3.1 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.3.1 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 2.3.1 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.3.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 2.3.1 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 2.3.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 2.3.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 2.3.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 2.3.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.3.1 1 + (c++)"typeinfo for OGRCircularString@Base" 2.3.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.3.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 2.3.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 2.3.1 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for OGRSpatialReference@Base" 2.3.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 2.3.1 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.3.1 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 2.3.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 2.3.1 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 2.3.1 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.3.1 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 2.3.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.3.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.3.1 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 2.3.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.3.1 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo for CADArc@Base" 2.3.1 1 + (c++)"typeinfo for CADRay@Base" 2.3.1 1 + (c++)"typeinfo for CPLErr@Base" 2.3.1 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.3.1 1 + (c++)"typeinfo for CADLine@Base" 2.3.1 1 + (c++)"typeinfo for CADText@Base" 2.3.1 1 + (c++)"typeinfo for GNMRule@Base" 2.3.1 1 + (c++)"typeinfo for CADHatch@Base" 2.3.1 1 + (c++)"typeinfo for CADImage@Base" 2.3.1 1 + (c++)"typeinfo for CADMLine@Base" 2.3.1 1 + (c++)"typeinfo for CADMText@Base" 2.3.1 1 + (c++)"typeinfo for CADSolid@Base" 2.3.1 1 + (c++)"typeinfo for CADXLine@Base" 2.3.1 1 + (c++)"typeinfo for GNMGraph@Base" 2.3.1 1 + (c++)"typeinfo for OGRCurve@Base" 2.3.1 1 + (c++)"typeinfo for OGRLayer@Base" 2.3.1 1 + (c++)"typeinfo for OGRPoint@Base" 2.3.1 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.1 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.1 1 + (c++)"typeinfo for CADCircle@Base" 2.3.1 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.1 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.1 1 + (c++)"typeinfo for CADObject@Base" 2.3.1 1 + (c++)"typeinfo for CADSpline@Base" 2.3.1 1 + (c++)"typeinfo for CPLString@Base" 2.3.1 1 + (c++)"typeinfo for VRTSource@Base" 2.3.1 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"typeinfo for __gnu_cxx::__mutex@Base" 2.3.1 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.3.1 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.1 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.3.1 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.1 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.1 1 + (c++)"typeinfo name for CADXRecord@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDriver@Base" 2.3.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.3.1 1 + (c++)"typeinfo name for IGMLReader@Base" 2.3.1 1 + (c++)"typeinfo name for MEMDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRFeature@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSurface@Base" 2.3.1 1 + (c++)"typeinfo name for RawDataset@Base" 2.3.1 1 + (c++)"typeinfo name for VRTDataset@Base" 2.3.1 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 2.3.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.3.1 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 2.3.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.3.1 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.1 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.1 1 + (c++)"typeinfo name for MEMRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLineString@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 2.3.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 2.3.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 2.3.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 2.3.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 2.3.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 2.3.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 2.3.1 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 2.3.1 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.3.1 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.3.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 2.3.1 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 2.3.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 2.3.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 2.3.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.3.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 2.3.1 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 2.3.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.3.1 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 2.3.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 2.3.1 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 2.3.1 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.3.1 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 2.3.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.3.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 2.3.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.3.1 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 2.3.1 1 + (c++)"typeinfo name for CADArc@Base" 2.3.1 1 + (c++)"typeinfo name for CADRay@Base" 2.3.1 1 + (c++)"typeinfo name for CPLErr@Base" 2.3.1 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.3.1 1 + (c++)"typeinfo name for CADLine@Base" 2.3.1 1 + (c++)"typeinfo name for CADText@Base" 2.3.1 1 + (c++)"typeinfo name for GNMRule@Base" 2.3.1 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.1 1 + (c++)"typeinfo name for CADImage@Base" 2.3.1 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.1 1 + (c++)"typeinfo name for CADMText@Base" 2.3.1 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.1 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.1 1 + (c++)"typeinfo name for GNMGraph@Base" 2.3.1 1 + (c++)"typeinfo name for OGRCurve@Base" 2.3.1 1 + (c++)"typeinfo name for OGRLayer@Base" 2.3.1 1 + (c++)"typeinfo name for OGRPoint@Base" 2.3.1 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.1 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.1 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.1 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.1 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.1 1 + (c++)"typeinfo name for CADObject@Base" 2.3.1 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.1 1 + (c++)"typeinfo name for CPLString@Base" 2.3.1 1 + (c++)"typeinfo name for VRTSource@Base" 2.3.1 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"typeinfo name for __gnu_cxx::__mutex@Base" 2.3.1 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.3.1 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)1>@Base" 2.3.1 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.1 1 + (c++)"vtable for CADPoint3D@Base" 2.3.1 1 + (c++)"vtable for CADXRecord@Base" 2.3.1 1 + (c++)"vtable for GDALDriver@Base" 2.3.1 1 + (c++)"vtable for GNMNetwork@Base" 2.3.1 1 + (c++)"vtable for IGMLReader@Base" 2.3.1 1 + (c++)"vtable for MEMDataset@Base" 2.3.1 1 + (c++)"vtable for OGRFeature@Base" 2.3.1 1 + (c++)"vtable for OGRPolygon@Base" 2.3.1 1 + (c++)"vtable for OGRSurface@Base" 2.3.1 1 + (c++)"vtable for RawDataset@Base" 2.3.1 1 + (c++)"vtable for VRTDataset@Base" 2.3.1 1 + (c++)"vtable for CADGeometry@Base" 2.3.1 1 + (c++)"vtable for GDALDataset@Base" 2.3.1 1 + (c++)"vtable for OGRGeometry@Base" 2.3.1 1 + (c++)"vtable for OGRSFDriver@Base" 2.3.1 1 + (c++)"vtable for OGRStylePen@Base" 2.3.1 1 + (c++)"vtable for OGRTriangle@Base" 2.3.1 1 + (c++)"vtable for OGRAttrIndex@Base" 2.3.1 1 + (c++)"vtable for OGRStyleTool@Base" 2.3.1 1 + (c++)"vtable for CADDictionary@Base" 2.3.1 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.1 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.1 1 + (c++)"vtable for MEMRasterBand@Base" 2.3.1 1 + (c++)"vtable for OGRDataSource@Base" 2.3.1 1 + (c++)"vtable for OGRLineString@Base" 2.3.1 1 + (c++)"vtable for OGRLinearRing@Base" 2.3.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.3.1 1 + (c++)"vtable for OGRMultiPoint@Base" 2.3.1 1 + (c++)"vtable for OGRStyleBrush@Base" 2.3.1 1 + (c++)"vtable for OGRStyleLabel@Base" 2.3.1 1 + (c++)"vtable for RawRasterBand@Base" 2.3.1 1 + (c++)"vtable for VRTRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALPamDataset@Base" 2.3.1 1 + (c++)"vtable for GDALRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALWarpKernel@Base" 2.3.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 2.3.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.3.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 2.3.1 1 + (c++)"vtable for GDALAsyncReader@Base" 2.3.1 1 + (c++)"vtable for GDALMajorObject@Base" 2.3.1 1 + (c++)"vtable for GDALRasterBlock@Base" 2.3.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.3.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 2.3.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.3.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 2.3.1 1 + (c++)"vtable for VRTSimpleSource@Base" 2.3.1 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.1 1 + (c++)"vtable for GDALProxyDataset@Base" 2.3.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.3.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.3.1 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 2.3.1 1 + (c++)"vtable for OGRPointIterator@Base" 2.3.1 1 + (c++)"vtable for VRTComplexSource@Base" 2.3.1 1 + (c++)"vtable for VRTRawRasterBand@Base" 2.3.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 2.3.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 2.3.1 1 + (c++)"vtable for GDALDriverManager@Base" 2.3.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALWarpOperation@Base" 2.3.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.3.1 1 + (c++)"vtable for OGRCircularString@Base" 2.3.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 2.3.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.3.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 2.3.1 1 + (c++)"vtable for OGRMultiLineString@Base" 2.3.1 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.3.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 2.3.1 1 + (c++)"vtable for OGRSpatialReference@Base" 2.3.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 2.3.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 2.3.1 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 2.3.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 2.3.1 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.3.1 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 2.3.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 2.3.1 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 2.3.1 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.1 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 2.3.1 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.3.1 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 2.3.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 2.3.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 2.3.1 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.3.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.1 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.3.1 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.3.1 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.1 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 2.3.1 1 + (c++)"vtable for CADArc@Base" 2.3.1 1 + (c++)"vtable for CADRay@Base" 2.3.1 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.3.1 1 + (c++)"vtable for CADLine@Base" 2.3.1 1 + (c++)"vtable for CADText@Base" 2.3.1 1 + (c++)"vtable for GNMRule@Base" 2.3.1 1 + (c++)"vtable for CADHatch@Base" 2.3.1 1 + (c++)"vtable for CADImage@Base" 2.3.1 1 + (c++)"vtable for CADMLine@Base" 2.3.1 1 + (c++)"vtable for CADMText@Base" 2.3.1 1 + (c++)"vtable for CADSolid@Base" 2.3.1 1 + (c++)"vtable for CADXLine@Base" 2.3.1 1 + (c++)"vtable for GNMGraph@Base" 2.3.1 1 + (c++)"vtable for OGRCurve@Base" 2.3.1 1 + (c++)"vtable for OGRLayer@Base" 2.3.1 1 + (c++)"vtable for OGRPoint@Base" 2.3.1 1 + (c++)"vtable for CADAttdef@Base" 2.3.1 1 + (c++)"vtable for CADAttrib@Base" 2.3.1 1 + (c++)"vtable for CADCircle@Base" 2.3.1 1 + (c++)"vtable for CADFace3D@Base" 2.3.1 1 + (c++)"vtable for CADFileIO@Base" 2.3.1 1 + (c++)"vtable for CADSpline@Base" 2.3.1 1 + (c++)"vtable for VRTSource@Base" 2.3.1 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.1 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)1>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.3.1 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.s390x b/gdal/debian/libgdal20.symbols.s390x new file mode 100644 index 000000000000..98ec72a470b4 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.s390x @@ -0,0 +1,4727 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.9.0 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.9.0 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.9.0 1 + (c++)"PamCleanProxyDB()@Base" 1.9.0 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.9.0 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.9.0 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.9.0 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.9.0 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.9.0 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.9.0 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.9.0 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.9.0 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.9.0 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.1 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.0 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.1 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.9.0 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.9.0 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.9.0 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.9.0 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.9.0 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.9.0 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.9.0 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.9.0 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.1 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.9.0 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.9.0 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.9.0 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.9.0 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.9.0 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.9.0 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.9.0 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.9.0 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.9.0 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.9.0 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.9.0 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.9.0 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.9.0 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.9.0 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.9.0 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.1 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.9.0 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"RawDataset::~RawDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.9.0 1 + (c++)"VRTDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.0 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.9.0 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.9.0 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.9.0 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.9.0 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::Dereference()@Base" 1.9.0 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.9.0 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.9.0 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.9.0 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.9.0 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.9.0 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.9.0 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALDataset::Release()@Base" 2.0.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.1 1 + (c++)"GDALDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALDataset::Reference()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.9.0 1 + (c++)"OGRGeometry::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.9.0 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.9.0 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.9.0 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.9.0 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStylePen::Parse()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.9.0 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.9.0 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.9.0 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.9.0 1 + (c++)"OGRStyleTool::GetType()@Base" 1.9.0 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.9.0 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.9.0 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.9.0 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.9.0 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::Sort()@Base" 1.9.0 1 + (c++)"CPLStringList::Clear()@Base" 1.9.0 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.9.0 1 + (c++)"CPLStringList::StealList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.9.0 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.9.0 1 + (c++)"CPLStringList::operator[](int)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.9.0 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.9.0 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.9.0 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.9.0 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.1 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.9.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.9.0 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.9.0 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.9.0 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clear()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Clone()@Base" 1.9.0 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.9.0 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::Initialize()@Base" 1.9.0 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.9.0 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 1.9.0 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.9.0 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 1.9.0 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.9.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.9.0 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.9.0 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.9.0 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.9.0 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.9.0 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.9.0 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.0 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.9.0 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.9.0 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.9.0 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.9.0 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.9.0 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.1 1 + (c++)"VSIFileManager::Get()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.9.0 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.9.0 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Write()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.9.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.9.0 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.1 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.9.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.9.0 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.0 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.9.0 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.9.0 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.9.0 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.9.0 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.9.0 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.9.0 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.9.0 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.9.0 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Release()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.9.0 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.9.0 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.0 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.9.0 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.0 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.9.0 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.0 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.9.0 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.9.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.9.0 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.1 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.0 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.9.0 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.9.0 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.9.0 1 + (c++)"OGRLayer::Dereference()@Base" 1.9.0 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.9.0 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.9.0 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.9.0 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.9.0 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.9.0 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.9.0 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.9.0 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.9.0 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.9.0 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.9.0 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.9.0 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.9.0 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.9.0 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.9.0 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.9.0 1 + (c++)"OGRPoint::empty()@Base" 1.9.0 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.9.0 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.9.0 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.9.0 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.9.0 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.9.0 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.9.0 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.9.0 1 + (c++)"CPLString::tolower()@Base" 1.9.0 1 + (c++)"CPLString::toupper()@Base" 1.9.0 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag*)@Base" 1.9.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.9.0 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.9.0 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.9.0 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.9.0 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.9.0 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Reader::Open(int)@Base" 1.9.0 1 + (c++)"S57Reader::Close()@Base" 1.9.0 1 + (c++)"S57Reader::Ingest()@Base" 1.9.0 1 + (c++)"S57Reader::Rewind()@Base" 1.9.0 1 + (c++)"S57Reader::ReadDSID()@Base" 1.9.0 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.9.0 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.9.0 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.9.0 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Reader::~S57Reader()@Base" 1.9.0 1 + (c++)"S57Writer::MakeRecord()@Base" 1.9.0 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.9.0 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.9.0 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::Close()@Base" 1.9.0 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.9.0 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"S57Writer::~S57Writer()@Base" 1.9.0 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, __va_list_tag*), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.9.0 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.9.0 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.9.0 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.1 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.9.0 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.9.0 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.9.0 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.9.0 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.9.0 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.9.0 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::Count() const@Base" 1.9.0 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.9.0 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.9.0 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.9.0 1 + (c++)"OGRLinearRing::clone() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.9.0 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.9.0 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.9.0 1 + (c++)"GDALColorTable::Clone() const@Base" 1.9.0 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.1 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.0 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.9.0 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.1 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.1 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.0 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.9.0 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.9.0 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.9.0 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.9.0 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.9.0 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.9.0 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.1 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.9.0 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.9.0 1 + (c++)"OGRPoint::getDimension() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.9.0 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.9.0 1 + (c++)"OGRPoint::clone() const@Base" 1.9.0 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.1 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.9.0 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.9.0 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 1.9.0 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.1 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.0 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.0 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"void std::_Destroy_aux::__destroy(PCIDSK::ShapeField*, PCIDSK::ShapeField*)@Base" 2.3.2 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"std::pair* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::pair*>(__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::pair*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.9.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair::~pair()@Base" 1.9.0 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.1 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.0 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(CADVector const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::~vector()@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.9.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.9.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.0 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 1.9.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 1.9.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 1.9.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.1 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator const, CPLString> > std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, CPLString> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, OGRCoordinateTransformation*> > std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 1.9.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.9.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.0 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, char const*)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.1 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.9.0 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.9.0 1 + (c++)"typeinfo name for MEMDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeature@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSurface@Base" 1.9.0 1 + (c++)"typeinfo name for RawDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VRTDataset@Base" 1.9.0 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.9.0 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLineString@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.9.0 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.9.0 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.9.0 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.9.0 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.9.0 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.9.0 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.9.0 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.9.0 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.9.0 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.9.0 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.0 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.9.0 1 + (c++)"typeinfo name for OGRLayer@Base" 1.9.0 1 + (c++)"typeinfo name for OGRPoint@Base" 1.9.0 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.0 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.9.0 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.9.0 1 + (c++)"vtable for MEMDataset@Base" 1.9.0 1 + (c++)"vtable for OGRFeature@Base" 1.9.0 1 + (c++)"vtable for OGRPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRSurface@Base" 1.9.0 1 + (c++)"vtable for RawDataset@Base" 1.9.0 1 + (c++)"vtable for VRTDataset@Base" 1.9.0 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.9.0 1 + (c++)"vtable for OGRGeometry@Base" 1.9.0 1 + (c++)"vtable for OGRSFDriver@Base" 1.9.0 1 + (c++)"vtable for OGRStylePen@Base" 1.9.0 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRStyleTool@Base" 1.9.0 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRDataSource@Base" 1.9.0 1 + (c++)"vtable for OGRLineString@Base" 1.9.0 1 + (c++)"vtable for OGRLinearRing@Base" 1.9.0 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPoint@Base" 1.9.0 1 + (c++)"vtable for OGRStyleBrush@Base" 1.9.0 1 + (c++)"vtable for OGRStyleLabel@Base" 1.9.0 1 + (c++)"vtable for RawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALPamDataset@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpKernel@Base" 1.9.0 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.9.0 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.9.0 1 + (c++)"vtable for GDALAsyncReader@Base" 1.9.0 1 + (c++)"vtable for GDALMajorObject@Base" 1.9.0 1 + (c++)"vtable for GDALRasterBlock@Base" 1.9.0 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.9.0 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.9.0 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.1 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.9.0 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.9.0 1 + (c++)"vtable for GDALDriverManager@Base" 1.9.0 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALWarpOperation@Base" 1.9.0 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.9.0 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.9.0 1 + (c++)"vtable for OGRMultiLineString@Base" 1.9.0 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.0 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.9.0 1 + (c++)"vtable for OGRSpatialReference@Base" 1.9.0 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.9.0 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.9.0 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.0 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.9.0 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.9.0 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.9.0 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.1 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.0 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.9.0 1 + (c++)"vtable for OGRLayer@Base" 1.9.0 1 + (c++)"vtable for OGRPoint@Base" 1.9.0 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.0 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.0 1 diff --git a/gdal/debian/libgdal20.symbols.sh4 b/gdal/debian/libgdal20.symbols.sh4 new file mode 100644 index 000000000000..26384108fb00 --- /dev/null +++ b/gdal/debian/libgdal20.symbols.sh4 @@ -0,0 +1,3908 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.1 1 + (c++)"GetVersion()@Base" 2.2.1 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag)@Base" 2.2.1 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.1 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.1 1 + (c++)"PamGetProxy(char const*)@Base" 2.2.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.1 1 + (c++)"GetCADFormats()@Base" 2.2.1 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 2.2.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.2.1 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.1 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 2.2.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 2.2.1 1 + (c++)"PamCleanProxyDB()@Base" 2.2.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.1 1 + (c++)"GetLastErrorCode()@Base" 2.2.1 1 + (c++)"GetVersionString()@Base" 2.2.1 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 2.2.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 2.2.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.2.1 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.2.1 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.2.1 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 2.2.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.2.1 1 + (c++)"OGRWriteToShapeBin(OGRGeometry*, unsigned char**, int*)@Base" 2.2.1 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 2.2.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 2.2.1 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 2.2.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.2.1 1 + (c++)"OGRInitializeXerces()@Base" 2.2.1 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.2.1 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 2.2.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.2.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 2.2.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.2.1 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.2.1 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 2.2.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 2.2.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.1 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.2.1 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.2.1 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.2.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.2.1 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.2.1 1 + (c++)"OGRCreateExpatXMLParser()@Base" 2.2.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.1 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.2.1 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 2.2.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference*)@Base" 2.2.1 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 2.2.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.1 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 2.2.1 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 2.2.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 2.2.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 2.2.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 2.2.1 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.1 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 2.2.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.2.1 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry*, unsigned char**, int*)@Base" 2.2.1 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 2.2.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.2.1 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.2.1 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 2.2.1 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.1 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 2.2.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.2.1 1 + (c++)"AIGDataset::GetFileList()@Base" 2.2.1 1 + (c++)"AIGDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"AIGDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"AIGDataset::TranslateColorTable(char const*)@Base" 2.2.1 1 + (c++)"AIGDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"AIGDataset::ReadRAT()@Base" 2.2.1 1 + (c++)"AIGDataset::AIGDataset()@Base" 2.2.1 1 + (c++)"AIGDataset::AIGDataset()@Base" 2.2.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 2.2.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 2.2.1 1 + (c++)"AIGDataset::~AIGDataset()@Base" 2.2.1 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.1 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADVariant const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(long)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(CADVariant const&)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(long)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.1 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.1 1 + (c++)"CADVariant::operator=(CADVariant const&)@Base" 2.2.1 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.1 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.2.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.2.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.2.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.2.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 2.2.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 2.2.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.2.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 2.2.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.2.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.2.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.2.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.2.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.2.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 2.2.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.2.1 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 2.2.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.2.1 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.2.1 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 2.2.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 2.2.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 2.2.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.2.1 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 2.2.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 2.2.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 2.2.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 2.2.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.2.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.2.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.2.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 2.2.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 2.2.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 2.2.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 2.2.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 2.2.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 2.2.1 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 2.2.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 2.2.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 2.2.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.2.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.2.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.2.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.2.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.1 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.1 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.1 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 2.2.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 2.2.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.2.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.2.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.2.1 1 + (c++)"MAPDataset::GetFileList()@Base" 2.2.1 1 + (c++)"MAPDataset::GetGCPCount()@Base" 2.2.1 1 + (c++)"MAPDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"MAPDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"MAPDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"MAPDataset::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"MAPDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"MAPDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"MAPDataset::Identify(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"MAPDataset::MAPDataset()@Base" 2.2.1 1 + (c++)"MAPDataset::MAPDataset()@Base" 2.2.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 2.2.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 2.2.1 1 + (c++)"MAPDataset::~MAPDataset()@Base" 2.2.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 2.2.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 2.2.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.2.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 2.2.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.2.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.2.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.2.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.2.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.2.1 1 + (c++)"OGRFeature::IsFieldSet(int)@Base" 2.2.1 1 + (c++)"OGRFeature::UnsetField(int)@Base" 2.2.1 1 + (c++)"OGRFeature::IsFieldNull(int)@Base" 2.2.1 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**)@Base" 2.2.1 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetStyleTable()@Base" 2.2.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature*, int*, int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 2.2.1 1 + (c++)"OGRFeature::StealGeometry()@Base" 2.2.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 2.2.1 1 + (c++)"OGRFeature::GetStyleString()@Base" 2.2.1 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 2.2.1 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsDouble(int)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsString(char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsString(int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsInteger(int)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsInteger64(int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsStringList(int)@Base" 2.2.1 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int)@Base" 2.2.1 1 + (c++)"OGRFeature::Clone()@Base" 2.2.1 1 + (c++)"OGRFeature::Equal(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.2.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature*, int*, int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetFrom(OGRFeature*, int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, char**)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, int, double*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, int, int*)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.2.1 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.2.1 1 + (c++)"OGRFeature::Validate(int, int)@Base" 2.2.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.2.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.2.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.2.1 1 + (c++)"OGRPolygon::closeRings()@Base" 2.2.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRPolygon::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 2.2.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 2.2.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 2.2.1 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 2.2.1 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.2.1 1 + (c++)"OGRPolygon::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.2.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.2.1 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.2.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.2.1 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.2.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.2.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.2.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.2.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.2.1 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.2.1 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.2.1 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.2.1 1 + (c++)"RawDataset::RawDataset()@Base" 2.2.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.2.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.2.1 1 + (c++)"RawDataset::~RawDataset()@Base" 2.2.1 1 + (c++)"TILDataset::GetFileList()@Base" 2.2.1 1 + (c++)"TILDataset::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"TILDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"TILDataset::Identify(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"TILDataset::TILDataset()@Base" 2.2.1 1 + (c++)"TILDataset::TILDataset()@Base" 2.2.1 1 + (c++)"TILDataset::~TILDataset()@Base" 2.2.1 1 + (c++)"TILDataset::~TILDataset()@Base" 2.2.1 1 + (c++)"TILDataset::~TILDataset()@Base" 2.2.1 1 + (c++)"VRTDataset::FlushCache()@Base" 2.2.1 1 + (c++)"VRTDataset::GetFileList()@Base" 2.2.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 2.2.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 2.2.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.2.1 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 2.2.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 2.2.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.2.1 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.2.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 2.2.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 2.2.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.2.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.2.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.2.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.2.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.2.1 1 + (c++)"WCSDataset::GetCoverage(int, int, int, int, int, int, int, int*, CPLHTTPResult**)@Base" 2.2.1 1 + (c++)"WCSDataset::GetFileList()@Base" 2.2.1 1 + (c++)"WCSDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"WCSDataset::ProcessError(CPLHTTPResult*)@Base" 2.2.1 1 + (c++)"WCSDataset::DirectRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"WCSDataset::GDALOpenResult(CPLHTTPResult*)@Base" 2.2.1 1 + (c++)"WCSDataset::TestUseBlockIO(int, int, int, int, int, int)@Base" 2.2.1 1 + (c++)"WCSDataset::ExtractGridInfo()@Base" 2.2.1 1 + (c++)"WCSDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"WCSDataset::DescribeCoverage()@Base" 2.2.1 1 + (c++)"WCSDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"WCSDataset::FlushMemoryResult()@Base" 2.2.1 1 + (c++)"WCSDataset::ExtractGridInfo100()@Base" 2.2.1 1 + (c++)"WCSDataset::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"WCSDataset::EstablishRasterDetails()@Base" 2.2.1 1 + (c++)"WCSDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"WCSDataset::Identify(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"WCSDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"WCSDataset::WCSDataset()@Base" 2.2.1 1 + (c++)"WCSDataset::WCSDataset()@Base" 2.2.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 2.2.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 2.2.1 1 + (c++)"WCSDataset::~WCSDataset()@Base" 2.2.1 1 + (c++)"AAIGDataset::CommonOpen(GDALOpenInfo*, GridFormat)@Base" 2.2.1 1 + (c++)"AAIGDataset::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"AAIGDataset::GetFileList()@Base" 2.2.1 1 + (c++)"AAIGDataset::ParseHeader(char const*, char const*)@Base" 2.2.1 1 + (c++)"AAIGDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"AAIGDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"AAIGDataset::Getc()@Base" 2.2.1 1 + (c++)"AAIGDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"AAIGDataset::Seek(unsigned long long)@Base" 2.2.1 1 + (c++)"AAIGDataset::Tell()@Base" 2.2.1 1 + (c++)"AAIGDataset::Identify(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"AAIGDataset::AAIGDataset()@Base" 2.2.1 1 + (c++)"AAIGDataset::AAIGDataset()@Base" 2.2.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 2.2.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 2.2.1 1 + (c++)"AAIGDataset::~AAIGDataset()@Base" 2.2.1 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.2.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.2.1 1 + (c++)"GDALDataset::FlushCache()@Base" 2.2.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.2.1 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.1 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.2.1 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.2.1 1 + (c++)"GDALDataset::Dereference()@Base" 2.2.1 1 + (c++)"GDALDataset::GetFileList()@Base" 2.2.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 2.2.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 2.2.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.2.1 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.2.1 1 + (c++)"GDALDataset::MarkAsShared()@Base" 2.2.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.2.1 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.1 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.2.1 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.2.1 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 2.2.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.2.1 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.2.1 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 2.2.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.2.1 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDataset::GetRasterCount()@Base" 2.2.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 2.2.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 2.2.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.2.1 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 2.2.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 2.2.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.2.1 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 2.2.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.2.1 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.2.1 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.2.1 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.2.1 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.2.1 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.2.1 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 2.2.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.2.1 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.2.1 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.2.1 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.2.1 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 2.2.1 1 + (c++)"GDALDataset::Init(bool)@Base" 2.2.1 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 2.2.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"GDALDataset::Release()@Base" 2.2.1 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.1 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.2.1 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.1 1 + (c++)"GDALDataset::GetDriver()@Base" 2.2.1 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALDataset::Reference()@Base" 2.2.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.2.1 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.2.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.2.1 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.2.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.2.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.2.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.2.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 2.2.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 2.2.1 1 + (c++)"IILI1Reader::~IILI1Reader()@Base" 2.2.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 2.2.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 2.2.1 1 + (c++)"IILI2Reader::~IILI2Reader()@Base" 2.2.1 1 + (c++)"OGDIDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"OGDIDataset::AddSubDataset(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGDIDataset::CollectLayers(int, char***, char***)@Base" 2.2.1 1 + (c++)"OGDIDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"OGDIDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"OGDIDataset::OverrideGlobalInfo(OGDIDataset*, char const*)@Base" 2.2.1 1 + (c++)"OGDIDataset::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"OGDIDataset::Open(GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"OGDIDataset::OGDIDataset()@Base" 2.2.1 1 + (c++)"OGDIDataset::OGDIDataset()@Base" 2.2.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 2.2.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 2.2.1 1 + (c++)"OGDIDataset::~OGDIDataset()@Base" 2.2.1 1 + (c++)"OGRGeometry::closeRings()@Base" 2.2.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 2.2.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.2.1 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 2.2.1 1 + (c++)"OGRGeometry::CastToIdentity(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 2.2.1 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void*)@Base" 2.2.1 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 2.2.1 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 2.2.1 1 + (c++)"OGRGeometry::importPreambuleFromWkb(unsigned char*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRGeometry::importPreambuleFromWkt(char**, int*, int*, bool*)@Base" 2.2.1 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 2.2.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.2.1 1 + (c++)"OGRGeometry::importPreambuleOfCollectionFromWkb(unsigned char*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.2.1 1 + (c++)"OGRGeometry::swapXY()@Base" 2.2.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.2.1 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.2.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.2.1 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.2.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.2.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.2.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.2.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.2.1 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 2.2.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 2.2.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.2.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.2.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.2.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.2.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.2.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 2.2.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 2.2.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 2.2.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 2.2.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 2.2.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 2.2.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 2.2.1 1 + (c++)"OGRStylePen::Parse()@Base" 2.2.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.2.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.2.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.2.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.2.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.2.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRTriangle::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRTriangle::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.1 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.1 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 2.2.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 2.2.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 2.2.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char**, char**, int, int)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::importFromWkt(char**, int, int*)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.2.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.2.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.2.1 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.2.1 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.2.1 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.2.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char**)@Base" 2.2.1 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char**)@Base" 2.2.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.2.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.2.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.2.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.2.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.2.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.2.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.2.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn*)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn*)@Base" 2.2.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.2.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.2.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.2.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.2.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.2.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 2.2.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 2.2.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 2.2.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 2.2.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 2.2.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 2.2.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 2.2.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 2.2.1 1 + (c++)"OGRStyleTool::GetType()@Base" 2.2.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 2.2.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.2.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.2.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.2.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.2.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.2.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.1 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.1 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.1 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.2.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.2.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.2.1 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.2.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.2.1 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.2.1 1 + (c++)"CPLStringList::Initialize()@Base" 2.2.1 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 2.2.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 2.2.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 2.2.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 2.2.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 2.2.1 1 + (c++)"CPLStringList::Sort()@Base" 2.2.1 1 + (c++)"CPLStringList::Clear()@Base" 2.2.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 2.2.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 2.2.1 1 + (c++)"CPLStringList::StealList()@Base" 2.2.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.2.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.2.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.2.1 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.2.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.2.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.2.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.2.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.2.1 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 2.2.1 1 + (c++)"CPLStringList::operator[](int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 2.2.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 2.2.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 2.2.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 2.2.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.2.1 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.2.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.2.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.2.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 2.2.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.2.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.2.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.2.1 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.2.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.2.1 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.2.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.2.1 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.2.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.2.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.2.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.2.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.2.1 1 + (c++)"OGRLinearRing::closeRings()@Base" 2.2.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char*, int)@Base" 2.2.1 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.2.1 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 2.2.1 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.2.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.2.1 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.2.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.2.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.2.1 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.2.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.2.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.2.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.2.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.2.1 1 + (c++)"OGRMultiCurve::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.2.1 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.2.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.2.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.2.1 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.2.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.2.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.2.1 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.2.1 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.2.1 1 + (c++)"OGRMultiPoint::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char**, int, int)@Base" 2.2.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.2.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.2.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.2.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.2.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.2.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.2.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.2.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.2.1 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 2.2.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 2.2.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 2.2.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 2.2.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.2.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.2.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.2.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.2.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.2.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 2.2.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 2.2.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 2.2.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 2.2.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.2.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.2.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.2.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.2.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.2.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 2.2.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 2.2.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 2.2.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::Clear()@Base" 2.2.1 1 + (c++)"OGRStyleTable::Clone()@Base" 2.2.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.2.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.2.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.2.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.2.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 2.2.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 2.2.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"RawRasterBand::Initialize()@Base" 2.2.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.2.1 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 2.2.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 2.2.1 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 2.2.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 2.2.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 2.2.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.2.1 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 2.2.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 2.2.1 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 2.2.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 2.2.1 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 2.2.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 2.2.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 2.2.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 2.2.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, void*, unsigned long long, int, int, GDALDataType, int, int, int)@Base" 2.2.1 1 + (c++)"RawRasterBand::RawRasterBand(void*, unsigned long long, int, int, GDALDataType, int, int, int, int, int)@Base" 2.2.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.2.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.2.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 2.2.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 2.2.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.2.1 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 2.2.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 2.2.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 2.2.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 2.2.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.2.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.2.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.2.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.2.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.2.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.2.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.2.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.2.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 2.2.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 2.2.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 2.2.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 2.2.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 2.2.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 2.2.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 2.2.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.2.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.2.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.2.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.2.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 2.2.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 2.2.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 2.2.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 2.2.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 2.2.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 2.2.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 2.2.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 2.2.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 2.2.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.2.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.2.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.2.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.2.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 2.2.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 2.2.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.2.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.2.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.2.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.2.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 2.2.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 2.2.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 2.2.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 2.2.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 2.2.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 2.2.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 2.2.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 2.2.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.2.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.2.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.2.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.2.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.2.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.2.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.2.1 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 2.2.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 2.2.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 2.2.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 2.2.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.2.1 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 2.2.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 2.2.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 2.2.1 1 + (c++)"GDALRasterBand::Init(int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetBand()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 2.2.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.2.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.2.1 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.2.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.2.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.2.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.2.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 2.2.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 2.2.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.2.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.2.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.2.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.2.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetGeomType()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetFieldCount()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::Clone()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::GetName()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::Release()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint*, double*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPointsM(int, double*, double*, double*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint*, double*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint*, double*, double*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double*, double*, double*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::setPoints(int, double*, double*, double*, double*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.2.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.2.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 2.2.1 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.2.1 1 + (c++)"VSIFileManager::Get()@Base" 2.2.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.2.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.2.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.2.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.2.1 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 2.2.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 2.2.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.2.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.2.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.2.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.2.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.2.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.2.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 2.2.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 2.2.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 2.2.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.2.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.2.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.2.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.2.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBlock::Internalize()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.2.1 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::Touch()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::Write()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.2.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.2.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.2.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.2.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.2.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 2.2.1 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 2.2.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.2.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.2.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.2.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.2.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.2.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.2.1 1 + (c++)"OGRMultiSurface::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.2.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.2.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.2.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.2.1 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.2.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.2.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.2.1 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.2.1 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetName()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.2.1 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::DatasetRasterIO(int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::GetBand()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::GetType()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::RasterIO(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.2.1 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.2.1 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.2.1 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.2.1 1 + (c++)"CPLODBCStatement::Clear()@Base" 2.2.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.2.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.2.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.2.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.2.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.2.1 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.2.1 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 2.2.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.2.1 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.2.1 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.2.1 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.2.1 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.2.1 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.2.1 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.2.1 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.2.1 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.2.1 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.2.1 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.2.1 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.2.1 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.2.1 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.2.1 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.2.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.2.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.2.1 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef()@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn*)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn*)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn*)@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.2.1 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.2.1 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.2.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.2.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.2.1 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.2.1 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 2.2.1 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.2.1 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.2.1 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 2.2.1 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 2.2.1 1 + (c++)"VRTComplexSource::GetType()@Base" 2.2.1 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::RasterIO(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.2.1 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.2.1 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.2.1 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.2.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.2.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.2.1 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.2.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.2.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.2.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.1 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 2.2.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 2.2.1 1 + (c++)"VSIVirtualHandle::Flush()@Base" 2.2.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 2.2.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 2.2.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 2.2.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 2.2.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 2.2.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 2.2.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 2.2.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.2.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.2.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.2.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.2.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.2.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, int, int, double, double)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, int, int, double, double)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, int*, int*, double*)@Base" 2.2.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.2.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.1 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.2.1 1 + (c++)"OGRCircularString::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRCircularString::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.2.1 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.2.1 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.2.1 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.2.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.2.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.2.1 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.2.1 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.2.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.2.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.2.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.2.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.2.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.2.1 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.2.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.2.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.2.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.2.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, json_object*)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, json_object*)@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::StealJSon()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.1 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char*, int, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::importPreambuleFromWkb(OGRGeometry*, unsigned char*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.2.1 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.2.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.2.1 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.2.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.2.1 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.2.1 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::createFromFgf(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::createFromWkb(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::createFromWkt(char**, OGRSpatialReference*, OGRGeometry**)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.2.1 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 2.2.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.2.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.2.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.2.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.2.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.2.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.2.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.2.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.2.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.2.1 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.2.1 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.2.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.2.1 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.2.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.2.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.2.1 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Release()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Validate()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.2.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.2.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.2.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.2.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.2.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.2.1 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.2.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.2.1 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.2.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.2.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.2.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 2.2.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetFeature(long long)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::ClearFilters()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetLayerDefn()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::ResetReading()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetNextFeature()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::PrepareSummary()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::SetNextByIndex(long long)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::TestCapability(char const*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::FreeIndexFields(OGRField*, unsigned int, bool)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetFeatureCount(int)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::ReadIndexFields(OGRFeature*, int, OGRField*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetSpatialFilter()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::SortIndexSection(OGRField const*, long long*, unsigned int, unsigned int)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::TranslateFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::AddFieldDefnToSet(int, int, _CPLHashSet*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::CreateOrderByIndex()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::SetAttributeFilter(char const*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::ApplyFiltersToSource()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::InvalidateOrderByIndex()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::ContainGeomSpecialField(swq_expr_node*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::FindAndSetIgnoredFields()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::ExploreExprForIgnoredFields(swq_expr_node*, _CPLHashSet*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::MustEvaluateSpatialFilterOnGenSQL()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::Compare(OGRField const*, OGRField const*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetExtent(OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::OGRGenSQLResultsLayer(GDALDataset*, void*, OGRGeometry*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::OGRGenSQLResultsLayer(GDALDataset*, void*, OGRGeometry*, char const*, char const*)@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 2.2.1 1 + (c++)"OGRGenSQLResultsLayer::~OGRGenSQLResultsLayer()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char*, int, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char**, int)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::empty()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.2.1 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 2.2.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 2.2.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.2.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.2.1 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.2.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::Init()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.2.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.2.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.2.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.2.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.2.1 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.2.1 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 2.2.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.2.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.2.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.2.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.2.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.2.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.2.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.2.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.2.1 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.2.1 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.1 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.1 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.2.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.2.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable(GDALDefaultRasterAttributeTable const&)@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.2.1 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.1 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.1 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.1 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.1 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.1 1 + (c++)"CADFile::~CADFile()@Base" 2.2.1 1 + (c++)"CADFile::~CADFile()@Base" 2.2.1 1 + (c++)"CADFile::~CADFile()@Base" 2.2.1 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.1 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.1 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.1 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.1 1 + (c++)"CADClass::CADClass()@Base" 2.2.1 1 + (c++)"CADClass::CADClass()@Base" 2.2.1 1 + (c++)"CADClass::~CADClass()@Base" 2.2.1 1 + (c++)"CADClass::~CADClass()@Base" 2.2.1 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.1 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.1 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.1 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.1 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.1 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.1 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.1 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.1 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.1 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.1 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.1 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.1 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.1 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.1 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.1 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.1 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.1 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.1 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.1 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.1 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.1 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.1 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.1 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.1 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.1 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.1 1 + (c++)"GNMGraph::Clear()@Base" 2.2.1 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.1 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.1 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.1 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.2.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.2.1 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.2.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.2.1 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.2.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.2.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.2.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.2.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.2.1 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.2.1 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 2.2.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 2.2.1 1 + (c++)"OGRLayer::Dereference()@Base" 2.2.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 2.2.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 2.2.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 2.2.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.2.1 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 2.2.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 2.2.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 2.2.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 2.2.1 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.2.1 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.2.1 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 2.2.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 2.2.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 2.2.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 2.2.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.2.1 1 + (c++)"OGRLayer::StartTransaction()@Base" 2.2.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 2.2.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 2.2.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 2.2.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 2.2.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.2.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 2.2.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.2.1 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 2.2.1 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRLayer::GetName()@Base" 2.2.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.2.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"OGRLayer::Reference()@Base" 2.2.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.2.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.2.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.2.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.2.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.2.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 2.2.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char*, int, OGRwkbVariant)@Base" 2.2.1 1 + (c++)"OGRPoint::importFromWkt(char**)@Base" 2.2.1 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 2.2.1 1 + (c++)"OGRPoint::empty()@Base" 2.2.1 1 + (c++)"OGRPoint::swapXY()@Base" 2.2.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.2.1 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.2.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.2.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.2.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.2.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.2.1 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.1 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.1 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.1 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.1 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.1 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.1 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.1 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.1 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.1 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.1 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.1 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.1 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.1 1 + (c++)"CADTables::CADTables()@Base" 2.2.1 1 + (c++)"CADTables::CADTables()@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.1 1 + (c++)"CPLString::Trim()@Base" 2.2.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 2.2.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 2.2.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 2.2.1 1 + (c++)"CPLString::tolower()@Base" 2.2.1 1 + (c++)"CPLString::toupper()@Base" 2.2.1 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag)@Base" 2.2.1 1 + (c++)"CPLString::~CPLString()@Base" 2.2.1 1 + (c++)"CPLString::~CPLString()@Base" 2.2.1 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 2.2.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 2.2.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 2.2.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 2.2.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 2.2.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.2.1 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 2.2.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 2.2.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 2.2.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 2.2.1 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 2.2.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 2.2.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 2.2.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 2.2.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Reader::Open(int)@Base" 2.2.1 1 + (c++)"S57Reader::Close()@Base" 2.2.1 1 + (c++)"S57Reader::Ingest()@Base" 2.2.1 1 + (c++)"S57Reader::Rewind()@Base" 2.2.1 1 + (c++)"S57Reader::ReadDSID()@Base" 2.2.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 2.2.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 2.2.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 2.2.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 2.2.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.2.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.2.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.2.1 1 + (c++)"S57Reader::~S57Reader()@Base" 2.2.1 1 + (c++)"S57Writer::MakeRecord()@Base" 2.2.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 2.2.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.2.1 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 2.2.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Writer::Close()@Base" 2.2.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 2.2.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int)@Base" 2.2.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int)@Base" 2.2.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.2.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.2.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.2.1 1 + (c++)"S57Writer::~S57Writer()@Base" 2.2.1 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.2.1 1 + (c++)"VRTSource::IsSimpleSource()@Base" 2.2.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.2.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.2.1 1 + (c++)"VRTSource::~VRTSource()@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, __va_list_tag), unsigned int, char const*, ...)@Base" 2.2.1 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.1 1 + (c++)"CADClasses::print() const@Base" 2.2.1 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.1 1 + (c++)"CADVariant::getX() const@Base" 2.2.1 1 + (c++)"CADVariant::getY() const@Base" 2.2.1 1 + (c++)"CADVariant::getZ() const@Base" 2.2.1 1 + (c++)"CADVariant::getReal() const@Base" 2.2.1 1 + (c++)"CADVariant::getType() const@Base" 2.2.1 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.1 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.1 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.1 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 2.2.1 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.1 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.1 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 2.2.1 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPolygon::PointOnSurface(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 2.2.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 2.2.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 2.2.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.2.1 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.2.1 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.2.1 1 + (c++)"OGRPolygon::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.2.1 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.2.1 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.2.1 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.1 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 2.2.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Polygonize() const@Base" 2.2.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 2.2.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 2.2.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 2.2.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::exportToJson() const@Base" 2.2.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 2.2.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.1 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 2.2.1 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.2.1 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.2.1 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 2.2.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 2.2.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 2.2.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 2.2.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 2.2.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 2.2.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 2.2.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.1 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 2.2.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 2.2.1 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.2.1 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.2.1 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.2.1 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 2.2.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.1 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 2.2.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 2.2.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 2.2.1 1 + (c++)"CPLStringList::Count() const@Base" 2.2.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 2.2.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.2.1 1 + (c++)"CPLStringList::operator[](int) const@Base" 2.2.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRLineString::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.2.1 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.2.1 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.2.1 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.2.1 1 + (c++)"OGRLineString::get_Area() const@Base" 2.2.1 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 2.2.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 2.2.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 2.2.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.2.1 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.2.1 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 2.2.1 1 + (c++)"OGRLinearRing::clone() const@Base" 2.2.1 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 2.2.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.2.1 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 2.2.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 2.2.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 2.2.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 2.2.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 2.2.1 1 + (c++)"GDALColorTable::Clone() const@Base" 2.2.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.2.1 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.2.1 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.2.1 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.1 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 2.2.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::PointOnSurface(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.2.1 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::PointOnSurface(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.2.1 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.2.1 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.2.1 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.1 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.1 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.2.1 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.2.1 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.2.1 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.2.1 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.2.1 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.2.1 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.2.1 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.2.1 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection*) const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.2.1 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::Clone() const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 2.2.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::clone() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 2.2.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.1 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.2.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 2.2.1 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 2.2.1 1 + (c++)"CADFile::getClasses() const@Base" 2.2.1 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.1 1 + (c++)"CADFile::getHeader() const@Base" 2.2.1 1 + (c++)"CADFile::getTables() const@Base" 2.2.1 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.1 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.1 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.1 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.1 1 + (c++)"GNMRule::c_str() const@Base" 2.2.1 1 + (c++)"GNMRule::GetType() const@Base" 2.2.1 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.1 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.1 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.1 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.1 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.1 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.1 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.1 1 + (c++)"CADLayer::getId() const@Base" 2.2.1 1 + (c++)"CADLayer::getOn() const@Base" 2.2.1 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.1 1 + (c++)"CADLayer::getColor() const@Base" 2.2.1 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.1 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.1 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.1 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.1 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.1 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.1 1 + (c++)"OGRCurve::getDimension() const@Base" 2.2.1 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 2.2.1 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.2.1 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.2.1 1 + (c++)"OGRLayer::GetRefCount() const@Base" 2.2.1 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 2.2.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 2.2.1 1 + (c++)"OGRPoint::getDimension() const@Base" 2.2.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 2.2.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 2.2.1 1 + (c++)"OGRPoint::clone() const@Base" 2.2.1 1 + (c++)"OGRPoint::Equals(OGRGeometry*) const@Base" 2.2.1 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.2.1 1 + (c++)"OGRPoint::IsEmpty() const@Base" 2.2.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 2.2.1 1 + (c++)"CADHandle::isNull() const@Base" 2.2.1 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.1 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.1 1 + (c++)"CADHeader::print() const@Base" 2.2.1 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.1 1 + (c++)"CADHeader::getSize() const@Base" 2.2.1 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.1 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.1 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 2.2.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.2.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.1 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.1 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant)@Base" 2.2.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.1 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.1 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.1 1 + (c++)"std::pair* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::pair*>(__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::pair*)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, int, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.2.1 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.2.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.2.1 1 + (c++)"std::pair::~pair()@Base" 2.2.1 1 + (c++)"std::pair::~pair()@Base" 2.2.1 1 + (c++)"std::pair > >::~pair()@Base" 2.2.1 1 + (c++)"std::pair > >::~pair()@Base" 2.2.1 1 + (c++)"void std::deque >::_M_push_back_aux(OGRFeature* const&)@Base" 2.2.1 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.2.1 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.1 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > std::vector, std::allocator > >::insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, void>(__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.2.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::vector, std::allocator > >::_M_fill_assign(unsigned int, std::pair const&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.2.1 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"std::vector >::~vector()@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector >::push_back(double const&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 2.2.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.1 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.2.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.2.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.2.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.2.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.2.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::pair&&, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.2.1 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_insert_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.2.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 2.2.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.2.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_equal >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.2.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.2.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.2.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.1 1 + (c++)"typeinfo for AIGDataset@Base" 2.2.1 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.1 1 + (c++)"typeinfo for GDALDriver@Base" 2.2.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.1 1 + (c++)"typeinfo for IGMLReader@Base" 2.2.1 1 + (c++)"typeinfo for MAPDataset@Base" 2.2.1 1 + (c++)"typeinfo for MEMDataset@Base" 2.2.1 1 + (c++)"typeinfo for OGRFeature@Base" 2.2.1 1 + (c++)"typeinfo for OGRPolygon@Base" 2.2.1 1 + (c++)"typeinfo for OGRSurface@Base" 2.2.1 1 + (c++)"typeinfo for RawDataset@Base" 2.2.1 1 + (c++)"typeinfo for TILDataset@Base" 2.2.1 1 + (c++)"typeinfo for VRTDataset@Base" 2.2.1 1 + (c++)"typeinfo for WCSDataset@Base" 2.2.1 1 + (c++)"typeinfo for AAIGDataset@Base" 2.2.1 1 + (c++)"typeinfo for GDALDataset@Base" 2.2.1 1 + (c++)"typeinfo for IILI1Reader@Base" 2.2.1 1 + (c++)"typeinfo for IILI2Reader@Base" 2.2.1 1 + (c++)"typeinfo for OGDIDataset@Base" 2.2.1 1 + (c++)"typeinfo for OGRGeometry@Base" 2.2.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 2.2.1 1 + (c++)"typeinfo for OGRStylePen@Base" 2.2.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.1 1 + (c++)"typeinfo for OGRAttrIndex@Base" 2.2.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 2.2.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.1 1 + (c++)"typeinfo for MEMRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for OGRDataSource@Base" 2.2.1 1 + (c++)"typeinfo for OGRLineString@Base" 2.2.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 2.2.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.2.1 1 + (c++)"typeinfo for OGRMultiPoint@Base" 2.2.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 2.2.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 2.2.1 1 + (c++)"typeinfo for RawRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 2.2.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 2.2.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 2.2.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.2.1 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 2.2.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 2.2.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 2.2.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 2.2.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.2.1 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 2.2.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.2.1 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 2.2.1 1 + (c++)"typeinfo for VRTSimpleSource@Base" 2.2.1 1 + (c++)"typeinfo for GDALProxyDataset@Base" 2.2.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.2.1 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.2.1 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 2.2.1 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.2.1 1 + (c++)"typeinfo for VRTComplexSource@Base" 2.2.1 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 2.2.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 2.2.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 2.2.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 2.2.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.1 1 + (c++)"typeinfo for OGRCircularString@Base" 2.2.1 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 2.2.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.2.1 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 2.2.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 2.2.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.2.1 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for OGRSpatialReference@Base" 2.2.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 2.2.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 2.2.1 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 2.2.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 2.2.1 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.1 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 2.2.1 1 + (c++)"typeinfo for OGRGenSQLResultsLayer@Base" 2.2.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 2.2.1 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 2.2.1 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.1 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 2.2.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 2.2.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 2.2.1 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.2.1 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.2.1 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 2.2.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.2.1 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 2.2.1 1 + (c++)"typeinfo for CPLErr@Base" 2.2.1 1 + (c++)"typeinfo for CADFile@Base" 2.2.1 1 + (c++)"typeinfo for GNMRule@Base" 2.2.1 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.1 1 + (c++)"typeinfo for OGRCurve@Base" 2.2.1 1 + (c++)"typeinfo for OGRLayer@Base" 2.2.1 1 + (c++)"typeinfo for OGRPoint@Base" 2.2.1 1 + (c++)"typeinfo for CPLString@Base" 2.2.1 1 + (c++)"typeinfo for VRTSource@Base" 2.2.1 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.2.1 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"typeinfo name for AIGDataset@Base" 2.2.1 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.1 1 + (c++)"typeinfo name for GDALDriver@Base" 2.2.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.1 1 + (c++)"typeinfo name for IGMLReader@Base" 2.2.1 1 + (c++)"typeinfo name for MAPDataset@Base" 2.2.1 1 + (c++)"typeinfo name for MEMDataset@Base" 2.2.1 1 + (c++)"typeinfo name for OGRFeature@Base" 2.2.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 2.2.1 1 + (c++)"typeinfo name for OGRSurface@Base" 2.2.1 1 + (c++)"typeinfo name for RawDataset@Base" 2.2.1 1 + (c++)"typeinfo name for TILDataset@Base" 2.2.1 1 + (c++)"typeinfo name for VRTDataset@Base" 2.2.1 1 + (c++)"typeinfo name for WCSDataset@Base" 2.2.1 1 + (c++)"typeinfo name for AAIGDataset@Base" 2.2.1 1 + (c++)"typeinfo name for GDALDataset@Base" 2.2.1 1 + (c++)"typeinfo name for IILI1Reader@Base" 2.2.1 1 + (c++)"typeinfo name for IILI2Reader@Base" 2.2.1 1 + (c++)"typeinfo name for OGDIDataset@Base" 2.2.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 2.2.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 2.2.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 2.2.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.1 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 2.2.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 2.2.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.1 1 + (c++)"typeinfo name for MEMRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 2.2.1 1 + (c++)"typeinfo name for OGRLineString@Base" 2.2.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 2.2.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.2.1 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 2.2.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 2.2.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 2.2.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 2.2.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 2.2.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 2.2.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.2.1 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 2.2.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 2.2.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 2.2.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 2.2.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.2.1 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 2.2.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.2.1 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 2.2.1 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 2.2.1 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 2.2.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.2.1 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.2.1 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 2.2.1 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.2.1 1 + (c++)"typeinfo name for VRTComplexSource@Base" 2.2.1 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 2.2.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 2.2.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 2.2.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 2.2.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.1 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.2.1 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 2.2.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.2.1 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 2.2.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 2.2.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.2.1 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 2.2.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 2.2.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 2.2.1 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 2.2.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 2.2.1 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.1 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 2.2.1 1 + (c++)"typeinfo name for OGRGenSQLResultsLayer@Base" 2.2.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 2.2.1 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 2.2.1 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.1 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 2.2.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 2.2.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 2.2.1 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.2.1 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.2.1 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 2.2.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.2.1 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 2.2.1 1 + (c++)"typeinfo name for CPLErr@Base" 2.2.1 1 + (c++)"typeinfo name for CADFile@Base" 2.2.1 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.1 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.1 1 + (c++)"typeinfo name for OGRCurve@Base" 2.2.1 1 + (c++)"typeinfo name for OGRLayer@Base" 2.2.1 1 + (c++)"typeinfo name for OGRPoint@Base" 2.2.1 1 + (c++)"typeinfo name for CPLString@Base" 2.2.1 1 + (c++)"typeinfo name for VRTSource@Base" 2.2.1 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.2.1 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.1 1 + (c++)"vtable for AIGDataset@Base" 2.2.1 1 + (c++)"vtable for CADXRecord@Base" 2.2.1 1 + (c++)"vtable for GDALDriver@Base" 2.2.1 1 + (c++)"vtable for GNMNetwork@Base" 2.2.1 1 + (c++)"vtable for IGMLReader@Base" 2.2.1 1 + (c++)"vtable for MAPDataset@Base" 2.2.1 1 + (c++)"vtable for MEMDataset@Base" 2.2.1 1 + (c++)"vtable for OGRFeature@Base" 2.2.1 1 + (c++)"vtable for OGRPolygon@Base" 2.2.1 1 + (c++)"vtable for OGRSurface@Base" 2.2.1 1 + (c++)"vtable for RawDataset@Base" 2.2.1 1 + (c++)"vtable for TILDataset@Base" 2.2.1 1 + (c++)"vtable for VRTDataset@Base" 2.2.1 1 + (c++)"vtable for WCSDataset@Base" 2.2.1 1 + (c++)"vtable for AAIGDataset@Base" 2.2.1 1 + (c++)"vtable for GDALDataset@Base" 2.2.1 1 + (c++)"vtable for IILI1Reader@Base" 2.2.1 1 + (c++)"vtable for IILI2Reader@Base" 2.2.1 1 + (c++)"vtable for OGDIDataset@Base" 2.2.1 1 + (c++)"vtable for OGRGeometry@Base" 2.2.1 1 + (c++)"vtable for OGRSFDriver@Base" 2.2.1 1 + (c++)"vtable for OGRStylePen@Base" 2.2.1 1 + (c++)"vtable for OGRTriangle@Base" 2.2.1 1 + (c++)"vtable for OGRAttrIndex@Base" 2.2.1 1 + (c++)"vtable for OGRStyleTool@Base" 2.2.1 1 + (c++)"vtable for CADDictionary@Base" 2.2.1 1 + (c++)"vtable for MEMRasterBand@Base" 2.2.1 1 + (c++)"vtable for OGRDataSource@Base" 2.2.1 1 + (c++)"vtable for OGRLineString@Base" 2.2.1 1 + (c++)"vtable for OGRLinearRing@Base" 2.2.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.2.1 1 + (c++)"vtable for OGRMultiPoint@Base" 2.2.1 1 + (c++)"vtable for OGRStyleBrush@Base" 2.2.1 1 + (c++)"vtable for OGRStyleLabel@Base" 2.2.1 1 + (c++)"vtable for RawRasterBand@Base" 2.2.1 1 + (c++)"vtable for VRTRasterBand@Base" 2.2.1 1 + (c++)"vtable for GDALPamDataset@Base" 2.2.1 1 + (c++)"vtable for GDALRasterBand@Base" 2.2.1 1 + (c++)"vtable for GDALWarpKernel@Base" 2.2.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 2.2.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.2.1 1 + (c++)"vtable for OGRStyleSymbol@Base" 2.2.1 1 + (c++)"vtable for GDALAsyncReader@Base" 2.2.1 1 + (c++)"vtable for GDALMajorObject@Base" 2.2.1 1 + (c++)"vtable for GDALRasterBlock@Base" 2.2.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.2.1 1 + (c++)"vtable for OGRMultiPolygon@Base" 2.2.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.2.1 1 + (c++)"vtable for OGRMutexedLayer@Base" 2.2.1 1 + (c++)"vtable for VRTSimpleSource@Base" 2.2.1 1 + (c++)"vtable for GDALProxyDataset@Base" 2.2.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.2.1 1 + (c++)"vtable for OGREditableLayer@Base" 2.2.1 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 2.2.1 1 + (c++)"vtable for OGRPointIterator@Base" 2.2.1 1 + (c++)"vtable for VRTComplexSource@Base" 2.2.1 1 + (c++)"vtable for VRTRawRasterBand@Base" 2.2.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 2.2.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 2.2.1 1 + (c++)"vtable for GDALDriverManager@Base" 2.2.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 2.2.1 1 + (c++)"vtable for GDALWarpOperation@Base" 2.2.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.1 1 + (c++)"vtable for OGRCircularString@Base" 2.2.1 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 2.2.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.2.1 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 2.2.1 1 + (c++)"vtable for OGRMultiLineString@Base" 2.2.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.2.1 1 + (c++)"vtable for GDALProxyRasterBand@Base" 2.2.1 1 + (c++)"vtable for OGRSpatialReference@Base" 2.2.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 2.2.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 2.2.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 2.2.1 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 2.2.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 2.2.1 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.1 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 2.2.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 2.2.1 1 + (c++)"vtable for OGRGenSQLResultsLayer@Base" 2.2.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 2.2.1 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 2.2.1 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.1 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 2.2.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 2.2.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 2.2.1 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.2.1 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.2.1 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.2.1 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 2.2.1 1 + (c++)"vtable for CADFile@Base" 2.2.1 1 + (c++)"vtable for GNMRule@Base" 2.2.1 1 + (c++)"vtable for GNMGraph@Base" 2.2.1 1 + (c++)"vtable for OGRCurve@Base" 2.2.1 1 + (c++)"vtable for OGRLayer@Base" 2.2.1 1 + (c++)"vtable for OGRPoint@Base" 2.2.1 1 + (c++)"vtable for VRTSource@Base" 2.2.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 diff --git a/gdal/debian/libgdal20.symbols.sparc64 b/gdal/debian/libgdal20.symbols.sparc64 new file mode 100644 index 000000000000..29d1fe9c187b --- /dev/null +++ b/gdal/debian/libgdal20.symbols.sparc64 @@ -0,0 +1,4786 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, void*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 2.0.2 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 2.0.2 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 2.0.2 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 2.0.2 1 + (c++)"PamCleanProxyDB()@Base" 2.0.2 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 2.0.2 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 2.0.2 1 + (c++)"PamAllocateProxy(char const*)@Base" 2.0.2 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.2 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 2.0.2 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 2.0.2 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 2.0.2 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 2.0.2 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.2 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 2.0.2 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned long, unsigned long)@Base" 2.1.1 1 + (c++)"GDALCloneTransformer(void*)@Base" 2.0.2 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 2.0.2 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 2.0.2 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.2 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.2 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.2 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OGRCreateExpatXMLParser()@Base" 2.0.2 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.2 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 2.0.2 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 2.0.2 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 2.0.2 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 2.0.2 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 2.0.2 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 2.0.2 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 2.0.2 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.2 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 2.0.2 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.2 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 2.0.2 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.2 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.2 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 2.0.2 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 2.0.2 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.2 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.0.2 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 2.0.2 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.0.2 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 2.0.2 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.0.2 1 + (c++)"GDALDriver::Delete(char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.0.2 1 + (c++)"GDALDriver::GDALDriver()@Base" 2.0.2 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.0.2 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.0.2 1 + (c++)"GDALDriver::~GDALDriver()@Base" 2.0.2 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 2.0.2 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 2.0.2 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.2 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadBox()@Base" 2.0.2 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadNext()@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 2.0.2 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 2.0.2 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.0.2 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 2.0.2 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 2.0.2 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 2.0.2 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 2.0.2 1 + (c++)"GMLFeature::GetOBProperties()@Base" 2.0.2 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 2.0.2 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 2.0.2 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 2.0.2 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 2.0.2 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 2.0.2 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.0.2 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 2.0.2 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.0.2 1 + (c++)"GMLFeature::~GMLFeature()@Base" 2.0.2 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 2.0.2 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 2.0.2 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.0.2 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.0.2 1 + (c++)"IGMLReader::~IGMLReader()@Base" 2.0.2 1 + (c++)"MEMDataset::GetGCPCount()@Base" 2.0.2 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 2.0.2 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 2.0.2 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 2.0.2 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 2.0.2 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.0.2 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 2.0.2 1 + (c++)"MEMDataset::GetGCPs()@Base" 2.0.2 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.2 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.0.2 1 + (c++)"MEMDataset::MEMDataset()@Base" 2.0.2 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.0.2 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.0.2 1 + (c++)"MEMDataset::~MEMDataset()@Base" 2.0.2 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 2.0.2 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 2.0.2 1 + (c++)"OGRFeature::StealGeometry()@Base" 2.0.2 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 2.0.2 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 2.0.2 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 2.0.2 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 2.0.2 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.2 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.2 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, double)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, int)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.2 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.0.2 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.0.2 1 + (c++)"OGRFeature::~OGRFeature()@Base" 2.0.2 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 2.0.2 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 2.0.2 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 2.0.2 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 2.0.2 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 2.0.2 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.2 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.0.2 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 2.0.2 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.0.2 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.0.2 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 2.0.2 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawDataset::RawDataset()@Base" 2.0.2 1 + (c++)"RawDataset::RawDataset()@Base" 2.0.2 1 + (c++)"RawDataset::~RawDataset()@Base" 2.0.2 1 + (c++)"RawDataset::~RawDataset()@Base" 2.0.2 1 + (c++)"RawDataset::~RawDataset()@Base" 2.0.2 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 2.0.2 1 + (c++)"VRTDataset::GetFileList()@Base" 2.0.2 1 + (c++)"VRTDataset::GetGCPCount()@Base" 2.0.2 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 2.0.2 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 2.0.2 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 2.0.2 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 2.0.2 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 2.0.2 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 2.0.2 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 2.0.2 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 2.0.2 1 + (c++)"VRTDataset::Delete(char const*)@Base" 2.0.2 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 2.0.2 1 + (c++)"VRTDataset::GetGCPs()@Base" 2.0.2 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 2.0.2 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.2 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.2 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 2.0.2 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.0.2 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 2.0.2 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.0.2 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.0.2 1 + (c++)"VRTDataset::~VRTDataset()@Base" 2.0.2 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::FlushCache()@Base" 2.0.2 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::Dereference()@Base" 2.0.2 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 2.0.2 1 + (c++)"GDALDataset::GetGCPCount()@Base" 2.0.2 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 2.0.2 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::MarkAsShared()@Base" 2.0.2 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 2.0.2 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.2 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 2.0.2 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 2.0.2 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 2.0.2 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 2.0.2 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 2.0.2 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 2.0.2 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 2.0.2 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 2.0.2 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 2.0.2 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.2 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.2 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.2 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 2.0.2 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 2.0.2 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned long)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGCPs()@Base" 2.0.2 1 + (c++)"GDALDataset::Release()@Base" 2.0.2 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::GetDriver()@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::Reference()@Base" 2.0.2 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.0.2 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 2.0.2 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.0.2 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.0.2 1 + (c++)"GDALDataset::~GDALDataset()@Base" 2.0.2 1 + (c++)"OGRGeometry::closeRings()@Base" 2.0.2 1 + (c++)"OGRGeometry::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 2.0.2 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 2.0.2 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 2.0.2 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 2.0.2 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 2.0.2 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 2.0.2 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.0.2 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 2.0.2 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.0.2 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.0.2 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 2.0.2 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 2.0.2 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 2.0.2 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.0.2 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.0.2 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 2.0.2 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.0.2 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 2.0.2 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 2.0.2 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 2.0.2 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 2.0.2 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 2.0.2 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 2.0.2 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 2.0.2 1 + (c++)"OGRStylePen::GetStyleString()@Base" 2.0.2 1 + (c++)"OGRStylePen::Parse()@Base" 2.0.2 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.0.2 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 2.0.2 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.0.2 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.0.2 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 2.0.2 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 2.0.2 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 2.0.2 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 2.0.2 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 2.0.2 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.0.2 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 2.0.2 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.2 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.2 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.0.2 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 2.0.2 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.0.2 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 2.0.2 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.0.2 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.0.2 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 2.0.2 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.0.2 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 2.0.2 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.0.2 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.0.2 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 2.0.2 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 2.0.2 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 2.0.2 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 2.0.2 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 2.0.2 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 2.0.2 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 2.0.2 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 2.0.2 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 2.0.2 1 + (c++)"OGRStyleTool::GetType()@Base" 2.0.2 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 2.0.2 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.0.2 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 2.0.2 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.0.2 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.0.2 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 2.0.2 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned long)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned long)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 2.0.2 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 2.0.2 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 2.0.2 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 2.0.2 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 2.0.2 1 + (c++)"CPLStringList::Sort()@Base" 2.0.2 1 + (c++)"CPLStringList::Clear()@Base" 2.0.2 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 2.0.2 1 + (c++)"CPLStringList::AddString(char const*)@Base" 2.0.2 1 + (c++)"CPLStringList::StealList()@Base" 2.0.2 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.0.2 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.0.2 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.0.2 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 2.0.2 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 2.0.2 1 + (c++)"CPLStringList::CPLStringList()@Base" 2.0.2 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.0.2 1 + (c++)"CPLStringList::~CPLStringList()@Base" 2.0.2 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 2.0.2 1 + (c++)"CPLStringList::operator[](int)@Base" 2.0.2 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 2.0.2 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 2.0.2 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.0.2 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.0.2 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 2.0.2 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 2.0.2 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.0.2 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 2.0.2 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.0.2 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 2.0.2 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.0.2 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.0.2 1 + (c++)"OGRLineString::~OGRLineString()@Base" 2.0.2 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 2.0.2 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.2 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 2.0.2 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.0.2 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.0.2 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 2.0.2 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 2.0.2 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.0.2 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.0.2 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 2.0.2 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.0.2 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 2.0.2 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.0.2 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.0.2 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 2.0.2 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 2.0.2 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 2.0.2 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 2.0.2 1 + (c++)"OGRStyleBrush::Parse()@Base" 2.0.2 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.0.2 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 2.0.2 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.0.2 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.0.2 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 2.0.2 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 2.0.2 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 2.0.2 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 2.0.2 1 + (c++)"OGRStyleLabel::Parse()@Base" 2.0.2 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.0.2 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 2.0.2 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.0.2 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.0.2 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 2.0.2 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 2.0.2 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 2.0.2 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 2.0.2 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::Clear()@Base" 2.0.2 1 + (c++)"OGRStyleTable::Clone()@Base" 2.0.2 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.0.2 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 2.0.2 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.0.2 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 2.0.2 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 2.0.2 1 + (c++)"RawRasterBand::FlushCache()@Base" 2.0.2 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"RawRasterBand::Initialize()@Base" 2.0.2 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned long, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"RawRasterBand::GetColorTable()@Base" 2.0.2 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.2 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 2.0.2 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 2.0.2 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 2.0.2 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 2.0.2 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.0.2 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 2.0.2 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.2 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 2.0.2 1 + (c++)"RawRasterBand::Read(void*, unsigned long, unsigned long)@Base" 2.0.2 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 2.0.2 1 + (c++)"RawRasterBand::Write(void*, unsigned long, unsigned long)@Base" 2.0.2 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 2.0.2 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.0.2 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.0.2 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 2.0.2 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 2.0.2 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 2.0.2 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.2 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 2.0.2 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.0.2 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.0.2 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 2.0.2 1 + (c++)"CPLODBCSession::CloseSession()@Base" 2.0.2 1 + (c++)"CPLODBCSession::GetLastError()@Base" 2.0.2 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 2.0.2 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 2.0.2 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 2.0.2 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 2.0.2 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 2.0.2 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.0.2 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 2.0.2 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.0.2 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 2.0.2 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 2.0.2 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 2.0.2 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 2.0.2 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 2.0.2 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 2.0.2 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 2.0.2 1 + (c++)"DDFRecordIndex::Sort()@Base" 2.0.2 1 + (c++)"DDFRecordIndex::Clear()@Base" 2.0.2 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 2.0.2 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.0.2 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 2.0.2 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.0.2 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 2.0.2 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 2.0.2 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 2.0.2 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.0.2 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 2.0.2 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.0.2 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 2.0.2 1 + (c++)"GDALPamDataset::FlushCache()@Base" 2.0.2 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 2.0.2 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 2.0.2 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetFileList()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 2.0.2 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 2.0.2 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 2.0.2 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 2.0.2 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.2 1 + (c++)"GDALPamDataset::PamClear()@Base" 2.0.2 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.0.2 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 2.0.2 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.0.2 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.0.2 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 2.0.2 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.0.2 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 2.0.2 1 + (c++)"GDALRasterBand::FlushCache()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetDataset()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.1.2 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 2.0.2 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 2.0.2 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 2.0.2 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 2.0.2 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 2.0.2 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.0.2 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 2.0.2 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 2.0.2 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetBand()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetXSize()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetYSize()@Base" 2.0.2 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetAccess()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.0.2 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 2.0.2 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.0.2 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.0.2 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 2.0.2 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 2.0.2 1 + (c++)"GDALWarpKernel::Validate()@Base" 2.0.2 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.0.2 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 2.0.2 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.0.2 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.0.2 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::Parse()@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.0.2 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 2.0.2 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 2.0.2 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.2 1 + (c++)"VSIFileManager::Get()@Base" 2.0.2 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.0.2 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 2.0.2 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.0.2 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 2.0.2 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned long, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 2.0.2 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 2.0.2 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.0.2 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 2.0.2 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.0.2 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.0.2 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 2.0.2 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 2.0.2 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 2.0.2 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 2.0.2 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 2.0.2 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.0.2 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 2.0.2 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.0.2 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.0.2 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Write()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Detach()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Verify()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.0.2 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 2.0.2 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 2.0.2 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 2.0.2 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 2.0.2 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.0.2 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 2.0.2 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.0.2 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetName()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetBand()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetType()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 2.0.2 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Clear()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Append(double)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Append(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 2.0.2 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 2.0.2 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 2.0.2 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 2.0.2 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.1.2 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 2.0.2 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 2.0.2 1 + (c++)"VRTComplexSource::GetType()@Base" 2.0.2 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.0.2 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 2.0.2 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.0.2 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.0.2 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 2.0.2 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned long const*)@Base" 2.0.2 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 2.0.2 1 + (c++)"VSIVirtualHandle::Flush()@Base" 2.0.2 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 2.0.2 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 2.0.2 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 2.0.2 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 2.0.2 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 2.0.2 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 2.0.2 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.0.2 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 2.0.2 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.0.2 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.0.2 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 2.0.2 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.0.2 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 2.0.2 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.0.2 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 2.0.2 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.0.2 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.0.2 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 2.0.2 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 2.0.2 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.0.2 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 2.0.2 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.0.2 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.0.2 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 2.0.2 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::Dereference()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::Clear()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::Fixup()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::Release()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::Reference()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.0.2 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.0.2 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.0.2 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.0.2 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.1 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 2.0.2 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 2.0.2 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 2.0.2 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 2.0.2 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 2.0.2 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 2.0.2 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 2.0.2 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 2.0.2 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::empty()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.1 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned long, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned long)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned long&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 2.0.2 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 2.0.2 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.0.2 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 2.0.2 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.0.2 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 2.0.2 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.0.2 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 2.0.2 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 2.0.2 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.0.2 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.0.2 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 2.0.2 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned long const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned long)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned long)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.0.2 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 2.0.2 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.0.2 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.0.2 1 + (c++)"OGRCurve::~OGRCurve()@Base" 2.0.2 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::SyncToDisk()@Base" 2.0.2 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayer::DeleteField(int)@Base" 2.0.2 1 + (c++)"OGRLayer::Dereference()@Base" 2.0.2 1 + (c++)"OGRLayer::GetGeomType()@Base" 2.0.2 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 2.0.2 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 2.0.2 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 2.0.2 1 + (c++)"OGRLayer::GetStyleTable()@Base" 2.0.2 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 2.0.2 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 2.0.2 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 2.0.2 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 2.0.2 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 2.0.2 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 2.0.2 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayer::StartTransaction()@Base" 2.0.2 1 + (c++)"OGRLayer::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 2.0.2 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 2.0.2 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 2.0.2 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 2.0.2 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"OGRLayer::GetName()@Base" 2.0.2 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayer::Reference()@Base" 2.0.2 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.0.2 1 + (c++)"OGRLayer::OGRLayer()@Base" 2.0.2 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.0.2 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.0.2 1 + (c++)"OGRLayer::~OGRLayer()@Base" 2.0.2 1 + (c++)"OGRPoint::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRPoint::empty()@Base" 2.0.2 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 2.0.2 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.0.2 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.0.2 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.0.2 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 2.0.2 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 2.0.2 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 2.0.2 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.0.2 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.0.2 1 + (c++)"OGRPoint::~OGRPoint()@Base" 2.0.2 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned long)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned long)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 2.0.2 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 2.0.2 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 2.0.2 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 2.0.2 1 + (c++)"CPLString::tolower()@Base" 2.0.2 1 + (c++)"CPLString::toupper()@Base" 2.0.2 1 + (c++)"CPLString::vPrintf(char const*, void*)@Base" 2.0.2 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 2.0.2 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 2.0.2 1 + (c++)"S57Reader::SetOptions(char**)@Base" 2.0.2 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 2.0.2 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 2.0.2 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.0.2 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 2.0.2 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 2.0.2 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 2.0.2 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 2.0.2 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 2.0.2 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 2.0.2 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 2.0.2 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 2.0.2 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Reader::Open(int)@Base" 2.0.2 1 + (c++)"S57Reader::Close()@Base" 2.0.2 1 + (c++)"S57Reader::Ingest()@Base" 2.0.2 1 + (c++)"S57Reader::Rewind()@Base" 2.0.2 1 + (c++)"S57Reader::ReadDSID()@Base" 2.0.2 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 2.0.2 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 2.0.2 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 2.0.2 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.0.2 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 2.0.2 1 + (c++)"S57Reader::~S57Reader()@Base" 2.0.2 1 + (c++)"S57Reader::~S57Reader()@Base" 2.0.2 1 + (c++)"S57Writer::MakeRecord()@Base" 2.0.2 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 2.0.2 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 2.0.2 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 2.0.2 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Writer::Close()@Base" 2.0.2 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 2.0.2 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::S57Writer()@Base" 2.0.2 1 + (c++)"S57Writer::S57Writer()@Base" 2.0.2 1 + (c++)"S57Writer::~S57Writer()@Base" 2.0.2 1 + (c++)"S57Writer::~S57Writer()@Base" 2.0.2 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 2.0.2 1 + (c++)"VRTSource::IsSimpleSource()@Base" 2.0.2 1 + (c++)"VRTSource::~VRTSource()@Base" 2.0.2 1 + (c++)"VRTSource::~VRTSource()@Base" 2.0.2 1 + (c++)"VRTSource::~VRTSource()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned long, char const*, void*), unsigned long, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 2.0.2 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 2.0.2 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 2.0.2 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 2.0.2 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 2.0.2 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Polygonize() const@Base" 2.0.2 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::exportToKML() const@Base" 2.0.2 1 + (c++)"OGRGeometry::getBoundary() const@Base" 2.0.2 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 2.0.2 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::exportToJson() const@Base" 2.0.2 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 2.0.2 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 2.0.2 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 2.0.2 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 2.0.2 1 + (c++)"OGRGeometry::IsRing() const@Base" 2.0.2 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::IsValid() const@Base" 2.0.2 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Boundary() const@Base" 2.0.2 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::IsSimple() const@Base" 2.0.2 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 2.0.2 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 2.0.2 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 2.0.2 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 2.0.2 1 + (c++)"OGR_SRSNode::Clone() const@Base" 2.0.2 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 2.0.2 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 2.0.2 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 2.0.2 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 2.0.2 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 2.0.2 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 2.0.2 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 2.0.2 1 + (c++)"CPLStringList::Count() const@Base" 2.0.2 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 2.0.2 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 2.0.2 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRLineString::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 2.0.2 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 2.0.2 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 2.0.2 1 + (c++)"OGRLinearRing::clone() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 2.0.2 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 2.0.2 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 2.0.2 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 2.0.2 1 + (c++)"GDALColorTable::Clone() const@Base" 2.0.2 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.1 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 2.0.2 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.2 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.2 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 2.0.2 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::clone() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 2.0.2 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 2.0.2 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 2.0.2 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 2.0.2 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 2.0.2 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.2 1 + (c++)"OGRLayer::GetRefCount() const@Base" 2.0.2 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRPoint::getDimension() const@Base" 2.0.2 1 + (c++)"OGRPoint::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRPoint::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRPoint::clone() const@Base" 2.0.2 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRPoint::WkbSize() const@Base" 2.0.2 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned long) const@Base" 2.0.2 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.0.2 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned long, std::__cxx11::basic_string, std::allocator > const&, unsigned long) const@Base" 2.4.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::find(std::vector > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator >, true>*, unsigned long)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned long, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned long, unsigned long, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned long)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned long)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0ul, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.0.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.0.2 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.0.2 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 2.0.2 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.3.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.1.1 1 + (c++)"std::pair::~pair()@Base" 2.0.2 1 + (c++)"std::pair::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.0.2 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 2.0.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.2 1 + (c++)"std::vector >::~vector()@Base" 2.0.2 1 + (c++)"std::vector >::~vector()@Base" 2.0.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, PCIDSK::eChanType const&)@Base" 2.0.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.2 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.1.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.1.3 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned long)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.0.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.1.1 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.0.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.3.3 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned long, bool)@Base" 2.0.2 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.0.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, int const&)@Base" 2.0.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.2 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_fill_assign(unsigned long, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned int const&)@Base" 2.0.2 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.1.1 1 + (c++)"std::vector >::resize(unsigned long)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.0.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned long, unsigned short const&)@Base" 2.0.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.1.1 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned long)@Base" 2.4.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.1.1 1 + (c++)"std::vector >::_M_default_append(unsigned long)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.1.1 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.1.3 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.1.3 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRLayer* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 2.0.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_lower_bound(std::_Rb_tree_node > const, std::pair > >*, std::_Rb_tree_node_base*, std::vector > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.1.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.1.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.3.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.1.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.1.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 2.0.2 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 2.0.2 1 + (c++)"typeinfo for MEMDataset@Base" 2.0.2 1 + (c++)"typeinfo for OGRFeature@Base" 2.0.2 1 + (c++)"typeinfo for OGRPolygon@Base" 2.0.2 1 + (c++)"typeinfo for OGRSurface@Base" 2.0.2 1 + (c++)"typeinfo for RawDataset@Base" 2.0.2 1 + (c++)"typeinfo for VRTDataset@Base" 2.0.2 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 2.0.2 1 + (c++)"typeinfo for OGRGeometry@Base" 2.0.2 1 + (c++)"typeinfo for OGRSFDriver@Base" 2.0.2 1 + (c++)"typeinfo for OGRStylePen@Base" 2.0.2 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 2.0.2 1 + (c++)"typeinfo for OGRStyleTool@Base" 2.0.2 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for OGRDataSource@Base" 2.0.2 1 + (c++)"typeinfo for OGRLineString@Base" 2.0.2 1 + (c++)"typeinfo for OGRLinearRing@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPoint@Base" 2.0.2 1 + (c++)"typeinfo for OGRStyleBrush@Base" 2.0.2 1 + (c++)"typeinfo for OGRStyleLabel@Base" 2.0.2 1 + (c++)"typeinfo for RawRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for VRTRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for GDALPamDataset@Base" 2.0.2 1 + (c++)"typeinfo for GDALRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for GDALWarpKernel@Base" 2.0.2 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 2.0.2 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 2.0.2 1 + (c++)"typeinfo for GDALAsyncReader@Base" 2.0.2 1 + (c++)"typeinfo for GDALMajorObject@Base" 2.0.2 1 + (c++)"typeinfo for GDALRasterBlock@Base" 2.0.2 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 2.0.2 1 + (c++)"typeinfo for VRTSimpleSource@Base" 2.0.2 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 2.0.2 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 2.0.2 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo for VRTComplexSource@Base" 2.0.2 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 2.0.2 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 2.0.2 1 + (c++)"typeinfo for GDALDriverManager@Base" 2.0.2 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for GDALWarpOperation@Base" 2.0.2 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 2.0.2 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiLineString@Base" 2.0.2 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 2.0.2 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 2.0.2 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 2.0.2 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 2.0.2 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 2.0.2 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 2.0.2 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 2.0.2 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 2.0.2 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 2.0.2 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 2.0.2 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 2.0.2 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 2.0.2 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 2.0.2 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRLayer@Base" 2.0.2 1 + (c++)"typeinfo for OGRPoint@Base" 2.0.2 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 2.0.2 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 2.0.2 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 2.0.2 1 + (c++)"typeinfo name for MEMDataset@Base" 2.0.2 1 + (c++)"typeinfo name for OGRFeature@Base" 2.0.2 1 + (c++)"typeinfo name for OGRPolygon@Base" 2.0.2 1 + (c++)"typeinfo name for OGRSurface@Base" 2.0.2 1 + (c++)"typeinfo name for RawDataset@Base" 2.0.2 1 + (c++)"typeinfo name for VRTDataset@Base" 2.0.2 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 2.0.2 1 + (c++)"typeinfo name for OGRGeometry@Base" 2.0.2 1 + (c++)"typeinfo name for OGRSFDriver@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStylePen@Base" 2.0.2 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStyleTool@Base" 2.0.2 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for OGRDataSource@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLineString@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLinearRing@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 2.0.2 1 + (c++)"typeinfo name for RawRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for VRTRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for GDALPamDataset@Base" 2.0.2 1 + (c++)"typeinfo name for GDALRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 2.0.2 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 2.0.2 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 2.0.2 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 2.0.2 1 + (c++)"typeinfo name for GDALMajorObject@Base" 2.0.2 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 2.0.2 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 2.0.2 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 2.0.2 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 2.0.2 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 2.0.2 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo name for VRTComplexSource@Base" 2.0.2 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 2.0.2 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 2.0.2 1 + (c++)"typeinfo name for GDALDriverManager@Base" 2.0.2 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 2.0.2 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 2.0.2 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 2.0.2 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 2.0.2 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 2.0.2 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 2.0.2 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 2.0.2 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 2.0.2 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 2.0.2 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 2.0.2 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 2.0.2 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 2.0.2 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 2.0.2 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 2.0.2 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLayer@Base" 2.0.2 1 + (c++)"typeinfo name for OGRPoint@Base" 2.0.2 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 2.0.2 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.1 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 2.0.2 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 2.0.2 1 + (c++)"vtable for MEMDataset@Base" 2.0.2 1 + (c++)"vtable for OGRFeature@Base" 2.0.2 1 + (c++)"vtable for OGRPolygon@Base" 2.0.2 1 + (c++)"vtable for OGRSurface@Base" 2.0.2 1 + (c++)"vtable for RawDataset@Base" 2.0.2 1 + (c++)"vtable for VRTDataset@Base" 2.0.2 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 2.0.2 1 + (c++)"vtable for OGRGeometry@Base" 2.0.2 1 + (c++)"vtable for OGRSFDriver@Base" 2.0.2 1 + (c++)"vtable for OGRStylePen@Base" 2.0.2 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 2.0.2 1 + (c++)"vtable for OGRStyleTool@Base" 2.0.2 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 2.0.2 1 + (c++)"vtable for OGRDataSource@Base" 2.0.2 1 + (c++)"vtable for OGRLineString@Base" 2.0.2 1 + (c++)"vtable for OGRLinearRing@Base" 2.0.2 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPoint@Base" 2.0.2 1 + (c++)"vtable for OGRStyleBrush@Base" 2.0.2 1 + (c++)"vtable for OGRStyleLabel@Base" 2.0.2 1 + (c++)"vtable for RawRasterBand@Base" 2.0.2 1 + (c++)"vtable for VRTRasterBand@Base" 2.0.2 1 + (c++)"vtable for GDALPamDataset@Base" 2.0.2 1 + (c++)"vtable for GDALRasterBand@Base" 2.0.2 1 + (c++)"vtable for GDALWarpKernel@Base" 2.0.2 1 + (c++)"vtable for OGRFeatureDefn@Base" 2.0.2 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"vtable for OGRStyleSymbol@Base" 2.0.2 1 + (c++)"vtable for GDALAsyncReader@Base" 2.0.2 1 + (c++)"vtable for GDALMajorObject@Base" 2.0.2 1 + (c++)"vtable for GDALRasterBlock@Base" 2.0.2 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPolygon@Base" 2.0.2 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.2 1 + (c++)"vtable for OGRMutexedLayer@Base" 2.0.2 1 + (c++)"vtable for VRTSimpleSource@Base" 2.0.2 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 2.0.2 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 2.0.2 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.2 1 + (c++)"vtable for VRTComplexSource@Base" 2.0.2 1 + (c++)"vtable for VRTRawRasterBand@Base" 2.0.2 1 + (c++)"vtable for VRTWarpedDataset@Base" 2.0.2 1 + (c++)"vtable for VSIVirtualHandle@Base" 2.0.2 1 + (c++)"vtable for GDALDriverManager@Base" 2.0.2 1 + (c++)"vtable for GDALPamRasterBand@Base" 2.0.2 1 + (c++)"vtable for GDALWarpOperation@Base" 2.0.2 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.2 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 2.0.2 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 2.0.2 1 + (c++)"vtable for OGRMultiLineString@Base" 2.0.2 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"vtable for GDALProxyRasterBand@Base" 2.0.2 1 + (c++)"vtable for OGRSpatialReference@Base" 2.0.2 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 2.0.2 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 2.0.2 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 2.0.2 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 2.0.2 1 + (c++)"vtable for OGRMutexedDataSource@Base" 2.0.2 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 2.0.2 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 2.0.2 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 2.0.2 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 2.0.2 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 2.0.2 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 2.0.2 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 2.0.2 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 2.0.2 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.1 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 2.0.2 1 + (c++)"vtable for OGRLayer@Base" 2.0.2 1 + (c++)"vtable for OGRPoint@Base" 2.0.2 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 2.0.2 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.1 1 diff --git a/gdal/debian/libgdal20.symbols.x32 b/gdal/debian/libgdal20.symbols.x32 new file mode 100644 index 000000000000..8fdd823c4a6e --- /dev/null +++ b/gdal/debian/libgdal20.symbols.x32 @@ -0,0 +1,4789 @@ +libgdal.so.20 libgdal20 #MINVER# +| libgdal20 #MINVER#, gdal-abi-2-4-0 +* Build-Depends-Package: libgdal-dev +#include "libgdal20.symbols.common" + (c++)"CPLOPrintf(char const*, ...)@Base" 2.2.0 1 + (c++)"GetVersion()@Base" 2.2.0 1 + (c++)"CPLOvPrintf(char const*, __va_list_tag*)@Base" 2.2.0 1 + (c++)"OpenCADFile(CADFileIO*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"OpenCADFile(char const*, CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"PamGetProxy(char const*)@Base" 1.10.1 1 + (c++)"CPLURLAddKVP(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRJSonParse(char const*, json_object**, bool)@Base" 2.2.0 1 + (c++)"GetCADFormats()@Base" 2.2.0 1 + (c++)"CPLURLGetValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"HFACreateLayer(hfainfo*, HFAEntry*, char const*, int, int, int, int, int, int, int, EPTType, char**, long long, long long, int, int)@Base" 2.1.0 1 + (c++)"IdentifyCADFile(CADFileIO*, bool)@Base" 2.2.0 1 + (c++)"OGRGetDayOfWeek(int, int, int)@Base" 1.10.1 1 + (c++)"OGRWktReadToken(char const*, char*)@Base" 1.10.1 1 + (c++)"PamCleanProxyDB()@Base" 1.10.1 1 + (c++)"GetDefaultFileIO(char const*)@Base" 2.2.0 1 + (c++)"GetLastErrorCode()@Base" 2.2.0 1 + (c++)"GetVersionString()@Base" 2.2.0 1 + (c++)"OGRToOGCGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRWktReadPoints(char const*, OGRRawPoint**, double**, int*, int*)@Base" 1.10.1 1 + (c++)"PamAllocateProxy(char const*)@Base" 1.10.1 1 + (c++)"OGRGetXMLDateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRWktReadPointsM(char const*, OGRRawPoint**, double**, double**, int*, int*, int*)@Base" 2.1.0 1 + (c++)"PamParseHistogram(CPLXMLNode*, double*, double*, int*, unsigned long long**, int*, int*)@Base" 2.0.2 1 + (c++)"OGRFromOGCGeomType(char const*)@Base" 1.10.1 1 + (c++)"OGRUpdateFieldType(OGRFieldDefn*, OGRFieldType, OGRFieldSubType)@Base" 2.1.0 1 + (c++)"OGRWriteToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"CPLUnixTimeToYMDHMS(long long, tm*)@Base" 1.10.1 1 + (c++)"CPLYMDHMSToUnixTime(tm const*)@Base" 1.10.1 1 + (c++)"GetOutputDriversFor(char const*, int)@Base" 2.3.0 1 + (c++)"OGRCheckPermutation(int*, int)@Base" 1.10.1 1 + (c++)"OGRGeometryFromEWKB(unsigned char*, int, int*, int)@Base" 2.0.2 1 + (c++)"OGRInitializeXerces()@Base" 2.2.0 1 + (c++)"OGRParseXMLDateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OSRGetEllipsoidInfo(int, char**, double*, double*)@Base" 1.10.1 1 + (c++)"VSICreateCachedFile(VSIVirtualHandle*, unsigned int, unsigned int)@Base" 2.2.0 1 + (c++)"GDALCloneTransformer(void*)@Base" 1.10.1 1 + (c++)"OGRGeometryToHexEWKB(OGRGeometry*, int, int, int)@Base" 2.1.0 1 + (c++)"OGRGetRFC822DateTime(OGRField const*)@Base" 2.0.2 1 + (c++)"OGRMakeWktCoordinate(char*, double, double, double, int)@Base" 1.10.1 1 + (c++)"OGRCreateFromShapeBin(unsigned char*, OGRGeometry**, int)@Base" 1.10.1 1 + (c++)"OGRDeinitializeXerces()@Base" 2.2.0 1 + (c++)"OGRMakeWktCoordinateM(char*, double, double, double, double, int, int)@Base" 2.1.0 1 + (c++)"PamHistogramToXMLTree(double, double, int, unsigned long long*, int, int)@Base" 2.0.2 1 + (c++)"VSICreateGZipWritable(VSIVirtualHandle*, int, int)@Base" 2.0.2 1 + (c++)"CPLParseRFC822DateTime(char const*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.3.0 1 + (c++)"CPLQuotedSQLIdentifier(char const*)@Base" 2.4.1 1 + (c++)"OGRGeometryFromHexEWKB(char const*, int*, int)@Base" 2.0.2 1 + (c++)"OGRPGCommonLaunderName(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRParseRFC822DateTime(char const*, OGRField*)@Base" 2.0.2 1 + (c++)"OGRCreateExpatXMLParser()@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetType(OGRFieldDefn&, bool, bool)@Base" 2.2.0 1 + (c++)"OGRPGCommonLayerSetType(OGRFieldDefn&, char const*, char const*, int)@Base" 2.0.2 1 + (c++)"GetOutputDriverForRaster(char const*)@Base" 2.3.0 1 + (c++)"MITABCoordSys2SpatialRef(char const*)@Base" 1.10.1 1 + (c++)"MITABSpatialRef2CoordSys(OGRSpatialReference const*)@Base" 2.3.0 1 + (c++)"PamFindMatchingHistogram(CPLXMLNode*, double, double, int, int, int)@Base" 1.10.1 1 + (c++)"CPL_json_object_object_get(json_object*, char const*)@Base" 2.2.0 1 + (c++)"OGRCreateDefaultLayerIndex()@Base" 1.10.1 1 + (c++)"OGRCreateXercesInputSource(_IO_FILE*)@Base" 2.3.0 1 + (c++)"OGRGeneralCmdLineProcessor(int, char***, int)@Base" 1.10.1 1 + (c++)"S57GenerateDSIDFeatureDefn()@Base" 1.10.1 1 + (c++)"S57GenerateGeomFeatureDefn(OGRwkbGeometryType, int)@Base" 1.10.1 1 + (c++)"S57GenerateObjectClassDefn(S57ClassRegistrar*, S57ClassContentExplorer*, int, int)@Base" 1.11.0 1 + (c++)"OGRDestroyXercesInputSource(xercesc_3_2::InputSource*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendFieldValue(CPLString&, OGRFeature*, int, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.0.2 1 + (c++)"OGRGetXML_UTF8_EscapedString(char const*)@Base" 1.10.1 1 + (c++)"OGRPGCommonLayerGetPGDefault(OGRFieldDefn*)@Base" 2.0.2 1 + (c++)"OGRWriteMultiPatchToShapeBin(OGRGeometry const*, unsigned char**, int*)@Base" 2.3.0 1 + (c++)"S57GenerateStandardAttributes(OGRFeatureDefn*, int)@Base" 1.10.1 1 + (c++)"VSICreateBufferedReaderHandle(VSIVirtualHandle*)@Base" 2.0.2 1 + (c++)"GDALRegenerateOverviewsMultiBand(int, GDALRasterBand**, int, GDALRasterBand***, char const*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"OGRPGCommonLayerNormalizeDefault(OGRFieldDefn*, char const*)@Base" 2.0.2 1 + (c++)"GDALRegisterTransformDeserializer(char const*, int (*)(void*, int, int, double*, double*, double*, int*), void* (*)(CPLXMLNode*))@Base" 2.3.0 1 + (c++)"OGRCreateCoordinateTransformation(OGRSpatialReference*, OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"GDALUnregisterTransformDeserializer(void*)@Base" 2.3.0 1 + (c++)"OGRPGCommonAppendCopyFieldsExceptGeom(CPLString&, OGRFeature*, char const*, bool, CPLString (*)(void*, char const*, int, char const*, char const*), void*)@Base" 2.2.0 1 + (c++)"S57GenerateVectorPrimitiveFeatureDefn(int, int)@Base" 1.10.1 1 + (c++)"OGRCreateEmulatedTransactionDataSourceWrapper(OGRDataSource*, IOGRTransactionBehaviour*, int, int)@Base" 2.0.2 1 + (c++)"CADClasses::addClass(CADClass)@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADClasses::CADClasses()@Base" 2.2.0 1 + (c++)"CADEllipse::setAxisRatio(double)@Base" 2.3.0 1 + (c++)"CADEllipse::getSMAxis()@Base" 2.3.0 1 + (c++)"CADEllipse::setSMAxis(CADVector const&)@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADEllipse::~CADEllipse()@Base" 2.3.0 1 + (c++)"CADPoint3D::setPosition(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::setXAxisAng(double)@Base" 2.3.0 1 + (c++)"CADPoint3D::setExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADVector const&, double)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADPoint3D::CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADPoint3D::~CADPoint3D()@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(char const*)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(double, double, double)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(int)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant(long, long)@Base" 2.3.0 1 + (c++)"CADVariant::CADVariant(short)@Base" 2.2.0 1 + (c++)"CADVariant::CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADVariant::~CADVariant()@Base" 2.2.0 1 + (c++)"CADXRecord::setRecordData(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CADXRecord::~CADXRecord()@Base" 2.2.0 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"CPLLocaleC::~CPLLocaleC()@Base" 1.10.1 1 + (c++)"GDALDriver::CreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::QuietDelete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultRename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"GDALDriver::DefaultCopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALDriver::DefaultCopyMasks(GDALDataset*, GDALDataset*, int, char const* const*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALDriver::DefaultCreateCopy(char const*, GDALDataset*, int, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDriver::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDriver::Delete(char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::CopyFiles(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALDriver::~GDALDriver()@Base" 1.10.1 1 + (c++)"GDALJP2Box::IsSuperBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt8(unsigned char)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadBoxData()@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendUInt16(unsigned short)@Base" 2.0.2 1 + (c++)"GDALJP2Box::AppendUInt32(unsigned int)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLblBox(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::DumpReadable(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateAsocBox(int, GDALJP2Box**)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateUUIDBox(unsigned char const*, int, unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::GetDataLength()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNextChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::CreateSuperBox(char const*, int, GDALJP2Box**)@Base" 2.0.2 1 + (c++)"GDALJP2Box::ReadFirstChild(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetWritableData(int, unsigned char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::AppendWritableData(int, void const*)@Base" 2.0.2 1 + (c++)"GDALJP2Box::CreateLabelledXMLAssoc(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadBox()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetType(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadNext()@Base" 1.10.1 1 + (c++)"GDALJP2Box::ReadFirst()@Base" 1.10.1 1 + (c++)"GDALJP2Box::SetOffset(long long)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::GDALJP2Box(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GDALJP2Box::~GDALJP2Box()@Base" 1.10.1 1 + (c++)"GMLFeature::AddGeometry(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::AddOBProperty(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperty(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GetOBProperties()@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetGeometryDirectly(int, CPLXMLNode*)@Base" 1.11.0 1 + (c++)"GMLFeature::SetPropertyDirectly(int, char*)@Base" 1.10.1 1 + (c++)"GMLFeature::Dump(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GMLFeature::SetFID(char const*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::GMLFeature(GMLFeatureClass*)@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GMLFeature::~GMLFeature()@Base" 1.10.1 1 + (c++)"GNMNetwork::GetFileList()@Base" 2.2.0 1 + (c++)"GNMNetwork::GetProjectionRef()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"GNMNetwork::~GNMNetwork()@Base" 2.2.0 1 + (c++)"IGMLReader::SetGlobalSRSName(char const*)@Base" 1.10.1 1 + (c++)"IGMLReader::SetFP(_IO_FILE*)@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"IGMLReader::~IGMLReader()@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"MEMDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"MEMDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"MEMDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"MEMDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"MEMDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"MEMDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"MEMDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"MEMDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"MEMDataset::~MEMDataset()@Base" 1.10.1 1 + (c++)"OGRFeature::FieldValue::SetDateTime(int, int, int, int, int, float, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::clear()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::SetNull()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::FieldValue(OGRFeature*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::~FieldValue()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(OGRFeature::FieldValue const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(std::vector > const&)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(double)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(int)@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator=(long long)@Base" 2.3.0 1 + (c++)"OGRFeature::UnsetField(int)@Base" 1.10.1 1 + (c++)"OGRFeature::AppendField()@Base" 2.3.0 1 + (c++)"OGRFeature::RemapFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::SetFieldNull(int)@Base" 2.2.0 1 + (c++)"OGRFeature::SetGeomField(int, OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRFeature::CreateFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFieldsFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeData(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::StealGeometry(int)@Base" 1.11.0 1 + (c++)"OGRFeature::StealGeometry()@Base" 1.10.1 1 + (c++)"OGRFeature::DestroyFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeometryRef()@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int)@Base" 1.11.0 1 + (c++)"OGRFeature::RemapGeomFields(OGRFeatureDefn*, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFieldInternal(int, OGRField*)@Base" 2.1.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::ConstFieldIterator(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::~ConstFieldIterator()@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRFeature::SetNativeMediaType(char const*)@Base" 2.1.0 1 + (c++)"OGRFeature::SetGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRFeature::FillUnsetWithDefault(int, char**)@Base" 2.0.2 1 + (c++)"OGRFeature::SetGeomFieldDirectly(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::FieldNotFoundException::~FieldNotFoundException()@Base" 2.3.0 1 + (c++)"OGRFeature::SetStyleStringDirectly(char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetFID(long long)@Base" 2.0.2 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetFrom(OGRFeature const*, int)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(char const*, char const*)@Base" 1.11.0 1 + (c++)"OGRFeature::SetField(int, OGRField*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, char const* const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, char const*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, double)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, double const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, int const*)@Base" 2.3.0 1 + (c++)"OGRFeature::SetField(int, int, long long const*)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, int, unsigned char*)@Base" 1.10.1 1 + (c++)"OGRFeature::SetField(int, int, int, int, int, int, float, int)@Base" 2.0.2 1 + (c++)"OGRFeature::SetField(int, long long)@Base" 2.0.2 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::OGRFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::~OGRFeature()@Base" 1.10.1 1 + (c++)"OGRFeature::operator[](char const*)@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int)@Base" 2.3.0 1 + (c++)"OGRPolygon::closeRings()@Base" 1.10.1 1 + (c++)"OGRPolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolygon::getExteriorRing()@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int)@Base" 1.10.1 1 + (c++)"OGRPolygon::stealExteriorRing()@Base" 1.11.0 1 + (c++)"OGRPolygon::stealInteriorRing(int)@Base" 1.11.0 1 + (c++)"OGRPolygon::CastToCurvePolygon(OGRPolygon*)@Base" 2.0.2 1 + (c++)"OGRPolygon::CasterToCurvePolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRPolygon::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::OGRPolygon(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRPolygon::OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::~OGRPolygon()@Base" 1.10.1 1 + (c++)"OGRPolygon::operator=(OGRPolygon const&)@Base" 2.1.0 1 + (c++)"OGRSurface::CastToPolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"OGRSurface::CastToCurvePolygon(OGRSurface*)@Base" 2.0.2 1 + (c++)"RawDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"RawDataset::~RawDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 2.3.0 1 + (c++)"VRTDataset::FlushCache()@Base" 1.10.1 1 + (c++)"VRTDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"VRTDataset::GetMetadata(char const*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 2.1.0 1 + (c++)"VRTDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"VRTDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::ExpandProxyBands()@Base" 2.4.1 1 + (c++)"VRTDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"VRTDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"VRTDataset::BuildVirtualOverviews()@Base" 2.1.0 1 + (c++)"VRTDataset::GetSingleSimpleSource()@Base" 1.10.1 1 + (c++)"VRTDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTDataset::CheckCompatibleForDatasetIO()@Base" 1.10.1 1 + (c++)"VRTDataset::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTDataset::Open(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::Create(char const*, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::Delete(char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"VRTDataset::OpenXML(char const*, char const*, GDALAccess)@Base" 1.10.1 1 + (c++)"VRTDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTDataset::Identify(GDALOpenInfo*)@Base" 1.10.1 1 + (c++)"VRTDataset::InitBand(char const*, int, bool)@Base" 2.3.0 1 + (c++)"VRTDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::VRTDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"VRTDataset::~VRTDataset()@Base" 1.10.1 1 + (c++)"CADGeometry::setThickness(double)@Base" 2.3.0 1 + (c++)"CADGeometry::setBlockAttributes(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setEED(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.3.0 1 + (c++)"CADGeometry::setColor(RGBColor)@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"CADGeometry::~CADGeometry()@Base" 2.3.0 1 + (c++)"GDALDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ExecuteSQL(char const*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::InitRWLock()@Base" 2.2.0 1 + (c++)"GDALDataset::ReleaseRef()@Base" 2.2.0 1 + (c++)"GDALDataset::CreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::DeleteLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::Dereference()@Base" 1.10.1 1 + (c++)"GDALDataset::GetFeatures()@Base" 2.3.0 1 + (c++)"GDALDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALDataset::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALDataset::AcquireMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::MarkAsShared()@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::ResetReading()@Base" 2.2.0 1 + (c++)"GDALDataset::GetDriverName()@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALDataset::GetRasterBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::GetStyleTable()@Base" 2.0.2 1 + (c++)"GDALDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::BuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::BuildParseInfo(swq_select*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDataset::EndAsyncReader(GDALAsyncReader*)@Base" 1.10.1 1 + (c++)"GDALDataset::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALDataset::GetLayerByName(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetNextFeature(OGRLayer**, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"GDALDataset::GetRasterCount()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterXSize()@Base" 1.10.1 1 + (c++)"GDALDataset::GetRasterYSize()@Base" 1.10.1 1 + (c++)"GDALDataset::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALDataset::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::GetOpenDatasets(int*)@Base" 1.10.1 1 + (c++)"GDALDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALDataset::BeginAsyncReader(int, int, int, int, void*, int, int, GDALDataType, int, int*, int, int, int, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::DestroyParseInfo(GDALSQLParseInfo*)@Base" 2.0.2 1 + (c++)"GDALDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALDataset::RasterInitialize(int, int)@Base" 1.10.1 1 + (c++)"GDALDataset::ReleaseResultSet(OGRLayer*)@Base" 2.0.2 1 + (c++)"GDALDataset::StartTransaction(int)@Base" 2.0.2 1 + (c++)"GDALDataset::BandBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::CommitTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.1.0 1 + (c++)"GDALDataset::BlockBasedRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::IsGenericSQLDialect(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLDropTable(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::RollbackTransaction()@Base" 2.0.2 1 + (c++)"GDALDataset::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALDataset::AddToDatasetOpenList()@Base" 2.0.2 1 + (c++)"GDALDataset::BlockBasedFlushCache()@Base" 1.10.1 1 + (c++)"GDALDataset::DisableReadWriteMutex()@Base" 2.1.0 1 + (c++)"GDALDataset::GetMetadataDomainList()@Base" 2.2.0 1 + (c++)"GDALDataset::ProcessSQLCreateIndex(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"GDALDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDataset::ReacquireReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::BuildLayerFromSelectInfo(swq_select*, OGRGeometry*, char const*, swq_select_parse_options*)@Base" 2.0.2 1 + (c++)"GDALDataset::TemporarilyDropReadWriteLock()@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateLayerCreationOptions(char const* const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAddColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableDropColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableAlterColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ProcessSQLAlterTableRenameColumn(char const*)@Base" 2.0.2 1 + (c++)"GDALDataset::ValidateRasterIOOrAdviseReadParameters(char const*, int*, int, int, int, int, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator*()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator&&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator=(GDALDataset::Layers::Iterator const&)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++(int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](char const*)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](int)@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::operator[](unsigned int)@Base" 2.3.0 1 + (c++)"GDALDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALDataset::Release()@Base" 2.0.2 1 + (c++)"GDALDataset::SetBand(int, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::Iterator(GDALDataset*, bool)@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator++()@Base" 2.3.0 1 + (c++)"GDALDataset::GetBands()@Base" 2.3.0 1 + (c++)"GDALDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALDataset::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.0.2 1 + (c++)"GDALDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALDataset::GetLayers()@Base" 2.3.0 1 + (c++)"GDALDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALDataset::Reference()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::GDALDataset(int)@Base" 2.1.0 1 + (c++)"GDALDataset::GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"GDALDataset::~GDALDataset()@Base" 1.10.1 1 + (c++)"OGRGeometry::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometry::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometry::CastToError(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRGeometry::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::transformTo(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::importFromWkb(unsigned char const*, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::freeGEOSContext(GEOSContextHandle_HS*)@Base" 1.11.0 1 + (c++)"OGRGeometry::OGRexportToSFCGAL(OGRGeometry const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::SFCGALexportToOGR(void const*)@Base" 2.3.0 1 + (c++)"OGRGeometry::createGEOSContext()@Base" 1.11.0 1 + (c++)"OGRGeometry::importPreambleFromWkb(unsigned char const*, int, OGRwkbByteOrder&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleFromWkt(char const**, int*, int*, bool*)@Base" 2.3.0 1 + (c++)"OGRGeometry::assignSpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRGeometry::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometry::HomogenizeDimensionalityWith(OGRGeometry*)@Base" 2.3.0 1 + (c++)"OGRGeometry::bGenerate_DB2_V72_BYTE_ORDER@Base" 1.10.1 1 + (c++)"OGRGeometry::importCurveCollectionFromWkt(char const**, int, int, int, int, int (*)(OGRGeometry*, OGRCurve*))@Base" 2.3.0 1 + (c++)"OGRGeometry::importPreambleOfCollectionFromWkb(unsigned char const*, int&, int&, OGRwkbByteOrder&, int, int&, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometry::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometry::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::OGRGeometry(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRGeometry::OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::~OGRGeometry()@Base" 1.10.1 1 + (c++)"OGRGeometry::operator=(OGRGeometry const&)@Base" 2.1.0 1 + (c++)"OGRSFDriver::CreateDataSource(char const*, char**)@Base" 1.10.1 1 + (c++)"OGRSFDriver::DeleteDataSource(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRSFDriver::~OGRSFDriver()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPartCount(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleByName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetStyleString(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitFromFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::InitStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::SetFeatureStyleString(OGRFeature*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::CreateStyleToolFromStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(OGRStyleTool*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddPart(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::GetPart(int, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::OGRStyleMgr(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStyleMgr::~OGRStyleMgr()@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamDbl(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamNum(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetParamStr(ogr_style_tool_param_pen_id, int&)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamDbl(ogr_style_tool_param_pen_id, double)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamNum(ogr_style_tool_param_pen_id, int)@Base" 1.10.1 1 + (c++)"OGRStylePen::SetParamStr(ogr_style_tool_param_pen_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStylePen::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStylePen::Parse()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRStylePen::~OGRStylePen()@Base" 1.10.1 1 + (c++)"OGRTriangle::CastToPolygon(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRTriangle::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRTriangle::addRingDirectly(OGRCurve*)@Base" 2.2.0 1 + (c++)"OGRTriangle::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRTriangle::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPolygon const&, int&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRPoint const&, OGRPoint const&, OGRPoint const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGRTriangle::OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::~OGRTriangle()@Base" 2.2.0 1 + (c++)"OGRTriangle::operator=(OGRTriangle const&)@Base" 2.2.0 1 + (c++)"OGR_SRSNode::StripNodes(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::InsertChild(OGR_SRSNode*, int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::DestroyChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::ClearChildren()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::MakeValueSafe()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::applyRemapper(char const*, char const* const*, char const* const*, int, int)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char const**, int, int*)@Base" 2.3.0 1 + (c++)"OGR_SRSNode::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::AddChild(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::SetValue(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::OGR_SRSNode(char const*)@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"OGR_SRSNode::~OGR_SRSNode()@Base" 1.10.1 1 + (c++)"CPLJSONArray::Add(char const*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(bool)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(double)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(int)@Base" 2.3.0 1 + (c++)"CPLJSONArray::Add(long long)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONArray::CPLJSONArray()@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::TryToIngest(int)@Base" 2.0.2 1 + (c++)"GDALOpenInfo::GetSiblingFiles()@Base" 2.0.2 1 + (c++)"GDALOpenInfo::StealSiblingFiles()@Base" 2.1.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::GDALOpenInfo(char const*, int, char const* const*)@Base" 2.3.0 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"GDALOpenInfo::~GDALOpenInfo()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRAttrIndex::~OGRAttrIndex()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetDefault(char const*)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::SetSubType(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::GetFieldTypeName(OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::GetFieldSubTypeName(OGRFieldSubType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::Set(char const*, OGRFieldType, int, int, OGRJustification)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetName(char const*)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::SetType(OGRFieldType)@Base" 2.0.2 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::OGRFieldDefn(OGRFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRFieldDefn::OGRFieldDefn(char const*, OGRFieldType)@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRFieldDefn::~OGRFieldDefn()@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamDbl(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamNum(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetParamStr(ogr_style_param const&, ogr_style_value&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamDbl(ogr_style_param const&, ogr_style_value&, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamNum(ogr_style_param const&, ogr_style_value&, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetParamStr(ogr_style_param const&, ogr_style_value&, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetSpecificId(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetStyleString(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetStyleString(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(double, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::ComputeWithUnit(int, ogr_style_tool_units_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetRGBFromString(char const*, int&, int&, int&, int&)@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetInternalInputUnitFromParam(char*)@Base" 1.10.1 1 + (c++)"OGRStyleTool::Parse(ogr_style_param const*, ogr_style_value*, int)@Base" 1.10.1 1 + (c++)"OGRStyleTool::GetType()@Base" 1.10.1 1 + (c++)"OGRStyleTool::SetUnit(ogr_style_tool_units_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::OGRStyleTool(ogr_style_tool_class_id)@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"OGRStyleTool::~OGRStyleTool()@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordsCount()@Base" 2.2.0 1 + (c++)"CADDictionary::addRecord(std::pair, std::allocator >, std::shared_ptr >)@Base" 2.2.0 1 + (c++)"CADDictionary::getRecord[abi:cxx11](unsigned int)@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADDictionary::~CADDictionary()@Base" 2.2.0 1 + (c++)"CADLWPolyline::setElevation(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setConstWidth(double)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setVectExtrusion(CADVector const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setBulges(std::vector > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADLWPolyline::setWidths(std::vector, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADLWPolyline::~CADLWPolyline()@Base" 2.3.0 1 + (c++)"CADPolyline3D::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertex(unsigned int)@Base" 2.3.0 1 + (c++)"CADPolyline3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CADPolyline3D::~CADPolyline3D()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONArray const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Add(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, bool)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, double)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, int)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Set(std::__cxx11::basic_string, std::allocator > const&, long long)@Base" 2.3.0 1 + (c++)"CPLJSONObject::Deinit()@Base" 2.3.0 1 + (c++)"CPLJSONObject::Delete(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::AddNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::SetNull(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, void*)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(std::__cxx11::basic_string, std::allocator > const&, CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLJSONObject::CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::~CPLJSONObject()@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator=(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock*, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::CPLLockHolder(_CPLLock**, CPLLockType, char const*, int)@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLLockHolder::~CPLLockHolder()@Base" 2.0.2 1 + (c++)"CPLStringList::AddNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::SetNameValue(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::MakeOurOwnCopy()@Base" 1.10.1 1 + (c++)"CPLStringList::EnsureAllocation(int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddStringDirectly(char*)@Base" 1.10.1 1 + (c++)"CPLStringList::InsertStringDirectly(int, char*)@Base" 1.10.1 1 + (c++)"CPLStringList::FindSortedInsertionPoint(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::Sort()@Base" 1.10.1 1 + (c++)"CPLStringList::Clear()@Base" 1.10.1 1 + (c++)"CPLStringList::Assign(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::AddString(char const*)@Base" 1.10.1 1 + (c++)"CPLStringList::StealList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::CPLStringList(char**, int)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::~CPLStringList()@Base" 1.10.1 1 + (c++)"CPLStringList::operator=(char const* const*)@Base" 2.3.0 1 + (c++)"CPLStringList::operator=(CPLStringList const&)@Base" 1.10.1 1 + (c++)"CPLStringList::operator[](int)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverview(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"MEMRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"MEMRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"MEMRasterBand::CreateMaskBand(int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOverviewCount()@Base" 2.2.0 1 + (c++)"MEMRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"MEMRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"MEMRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"MEMRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::MEMRasterBand(GDALDataset*, int, unsigned char*, GDALDataType, long long, long long, int, char const*)@Base" 2.0.2 1 + (c++)"MEMRasterBand::MEMRasterBand(unsigned char*, GDALDataType, int, int)@Base" 2.2.0 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"MEMRasterBand::~MEMRasterBand()@Base" 1.10.1 1 + (c++)"OGRDataSource::DestroyDataSource(OGRDataSource*)@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRDataSource::OGRDataSource()@Base" 1.10.1 1 + (c++)"OGRLineString::CastToLinearRing(OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLineString::TransferMembersAndDestroy(OGRLineString*, OGRLineString*)@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::OGRLineString(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLineString::OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::~OGRLineString()@Base" 1.10.1 1 + (c++)"OGRLineString::operator=(OGRLineString const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::closeRings()@Base" 1.10.1 1 + (c++)"OGRLinearRing::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::_importFromWkb(OGRwkbByteOrder, int, unsigned char const*, int, int&)@Base" 2.3.0 1 + (c++)"OGRLinearRing::CastToLineString(OGRLinearRing*)@Base" 2.0.2 1 + (c++)"OGRLinearRing::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::reverseWindingOrder()@Base" 1.10.1 1 + (c++)"OGRLinearRing::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRLinearRing::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing*)@Base" 1.10.1 1 + (c++)"OGRLinearRing::OGRLinearRing(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRLinearRing::OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::~OGRLinearRing()@Base" 1.10.1 1 + (c++)"OGRLinearRing::operator=(OGRLinearRing const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::CastToMultiLineString(OGRMultiCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::OGRMultiCurve(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiCurve::OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::~OGRMultiCurve()@Base" 2.0.2 1 + (c++)"OGRMultiCurve::operator=(OGRMultiCurve const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::importFromWkt_Bracketed(char const**, int, int)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::OGRMultiPoint(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRMultiPoint::OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::~OGRMultiPoint()@Base" 1.10.1 1 + (c++)"OGRMultiPoint::operator=(OGRMultiPoint const&)@Base" 2.1.0 1 + (c++)"OGRStyleBrush::GetParamDbl(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamNum(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetParamStr(ogr_style_tool_param_brush_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamDbl(ogr_style_tool_param_brush_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamNum(ogr_style_tool_param_brush_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::SetParamStr(ogr_style_tool_param_brush_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleBrush::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleBrush::~OGRStyleBrush()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamDbl(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamNum(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetParamStr(ogr_style_tool_param_label_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamDbl(ogr_style_tool_param_label_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamNum(ogr_style_tool_param_label_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::SetParamStr(ogr_style_tool_param_label_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleLabel::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleLabel::~OGRStyleLabel()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ModifyStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::RemoveStyle(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetNextStyle()@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetStyleName(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::LoadStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::SaveStyleTable(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::GetLastStyleName()@Base" 1.10.1 1 + (c++)"OGRStyleTable::ResetStyleStringReading()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Find(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clear()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Clone()@Base" 1.10.1 1 + (c++)"OGRStyleTable::Print(_IO_FILE*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::IsExist(char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::AddStyle(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"OGRStyleTable::~OGRStyleTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessLine(int)@Base" 1.10.1 1 + (c++)"RawRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"RawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::Initialize()@Base" 1.10.1 1 + (c++)"RawRasterBand::AccessBlock(unsigned long long, unsigned int, void*)@Base" 2.1.0 1 + (c++)"RawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"RawRasterBand::CanUseDirectIO(int, int, int, int, GDALDataType)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"RawRasterBand::StoreNoDataValue(double)@Base" 1.10.1 1 + (c++)"RawRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"RawRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"RawRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"RawRasterBand::IsSignificantNumberOfLinesLoaded(int, int)@Base" 1.11.0 1 + (c++)"RawRasterBand::Read(void*, unsigned int, unsigned int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Seek(unsigned long long, int)@Base" 1.10.1 1 + (c++)"RawRasterBand::Write(void*, unsigned int, unsigned int)@Base" 1.10.1 1 + (c++)"RawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"RawRasterBand::SetAccess(GDALAccess)@Base" 1.10.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(GDALDataset*, int, _IO_FILE*, unsigned long long, int, int, GDALDataType, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::RawRasterBand(_IO_FILE*, unsigned long long, int, int, GDALDataType, int, int, int, RawRasterBand::OwnFP)@Base" 2.4.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"RawRasterBand::~RawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::Initialize(int, int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMaskBand(VRTRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultRAT()@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::SetIsMaskBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"VRTRasterBand::UnsetNoDataValue()@Base" 1.10.1 1 + (c++)"VRTRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"VRTRasterBand::CopyCommonInfoFrom(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"VRTRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"VRTRasterBand::IsPansharpenRasterBand()@Base" 2.1.0 1 + (c++)"VRTRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"VRTRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"VRTRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"VRTRasterBand::~VRTRasterBand()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void**, double, char const*, int, int)@Base" 2.0.2 1 + (c++)"CPLMutexHolder::CPLMutexHolder(void*, double, char const*, int)@Base" 1.11.0 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLMutexHolder::~CPLMutexHolder()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CloseSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::GetLastError()@Base" 1.10.1 1 + (c++)"CPLODBCSession::BeginTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::ClearTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::EstablishSession(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CommitTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::RollbackTransaction()@Base" 1.10.1 1 + (c++)"CPLODBCSession::Failed(int, void*)@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"CPLODBCSession::~CPLODBCSession()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::RemoveRecord(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::FindRecordByObjl(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::GetClientInfoByIndex(int)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::SetClientInfoByIndex(int, void*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Sort()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::Clear()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::AddRecord(int, DDFRecord*)@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"DDFRecordIndex::~DDFRecordIndex()@Base" 1.10.1 1 + (c++)"GDALColorTable::SetColorEntry(int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::CreateColorRamp(int, GDALColorEntry const*, int, GDALColorEntry const*)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::GDALColorTable(GDALPaletteInterp)@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALColorTable::~GDALColorTable()@Base" 1.10.1 1 + (c++)"GDALPamDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadAux(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TryLoadXML(char**)@Base" 1.10.1 1 + (c++)"GDALPamDataset::TrySaveXML()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::BuildPamFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetSubdatasetName()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetSubdatasetName(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetPhysicalFilename()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetPhysicalFilename(char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::IsPamFilenameAPotentialSiblingFile()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALPamDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamDataset::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamDataset::CloneInfo(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALPamDataset::~GDALPamDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushBlock(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataset()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitRWLock()@Base" 2.2.0 1 + (c++)"GDALRasterBand::WriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::ReportError(CPLErr, int, char const*, ...)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBlockSize(int*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::InitBlockInfo()@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::EnterReadWrite(GDALRWFlag)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::LeaveReadWrite()@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetValidPercent(unsigned long long, unsigned long long)@Base" 2.4.1 1 + (c++)"GDALRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALRasterBand::OverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetFlushBlockErr(CPLErr)@Base" 1.10.1 1 + (c++)"GDALRasterBand::UnreferenceBlock(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetLockedBlockRef(int, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterDataType()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALRasterBand::RasterIOResampled(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GetActualBlockSize(int, int, int*, int*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::InvalidateMaskBand()@Base" 1.11.1 1 + (c++)"GDALRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::TryOverviewRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, int*)@Base" 2.1.0 1 + (c++)"GDALRasterBand::TryGetLockedBlockRef(int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"GDALRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALRasterBand::GetIndexColorTranslationTo(GDALRasterBand*, unsigned char*, int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetXSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetYSize()@Base" 1.10.1 1 + (c++)"GDALRasterBand::RasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetAccess()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALRasterBand::ReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::GDALRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALRasterBand::GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALRasterBand::~GDALRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::PerformWarp()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::Validate()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"GDALWarpKernel::~GDALWarpKernel()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeomType(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::AddFieldDefn(OGRFieldDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DeleteFieldDefn(int)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetStyleIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::AddGeomFieldDefn(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::CreateFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::ReorderFieldDefns(int*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::DestroyFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetGeometryIgnored(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::DeleteGeomFieldDefn(int)@Base" 1.11.0 1 + (c++)"OGRFeatureDefn::ReserveSpaceForFields(int)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::Release()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::SetName(char const*)@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::OGRFeatureDefn(char const*)@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRFeatureDefn::~OGRFeatureDefn()@Base" 1.10.1 1 + (c++)"OGRSimpleCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPointsM(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPointsM(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setNumPoints(int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::ConstIterator(OGRSimpleCurve const*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::reversePoints()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addSubLineString(OGRLineString const*, int, int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::importFromWKTListOnly(char const**, int, int, OGRRawPoint*&, int&, double*&)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::AddM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setM(int, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setZ(int, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::empty()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Make2D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Make3D()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::RemoveM()@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::Iterator::update()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::Iterator(OGRSimpleCurve*, int)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::~Iterator()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator*()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::Iterator::operator++()@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::addPoint(OGRPoint const*)@Base" 2.2.0 1 + (c++)"OGRSimpleCurve::addPoint(double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::addPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoint(int, OGRPoint*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::setPoint(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::addPointM(double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPointM(int, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, OGRRawPoint const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::setPoints(int, double const*, double const*, double const*, double const*)@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::~OGRSimpleCurve()@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::operator=(OGRSimpleCurve const&)@Base" 2.1.0 1 + (c++)"OGRStyleSymbol::GetParamDbl(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamNum(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetParamStr(ogr_style_tool_param_symbol_id, int&)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamDbl(ogr_style_tool_param_symbol_id, double)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamNum(ogr_style_tool_param_symbol_id, int)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::SetParamStr(ogr_style_tool_param_symbol_id, char const*)@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::GetStyleString()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::Parse()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"OGRStyleSymbol::~OGRStyleSymbol()@Base" 1.10.1 1 + (c++)"VSIFileManager::GetHandler(char const*)@Base" 1.10.1 1 + (c++)"VSIFileManager::GetPrefixes()@Base" 2.3.0 1 + (c++)"VSIFileManager::InstallHandler(std::__cxx11::basic_string, std::allocator > const&, VSIFilesystemHandler*)@Base" 2.0.2 1 + (c++)"VSIFileManager::Get()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"VSIFileManager::~VSIFileManager()@Base" 1.10.1 1 + (c++)"CPLJSONDocument::LoadChunks(std::__cxx11::basic_string, std::allocator > const&, unsigned int, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(unsigned char const*, int)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadMemory(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::SaveAsString[abi:cxx11]()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Load(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::Save(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::GetRoot()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::LoadUrl(std::__cxx11::basic_string, std::allocator > const&, char**, int (*)(double, char const*, void*), void*)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"CPLJSONDocument::CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::~CPLJSONDocument()@Base" 2.3.0 1 + (c++)"CPLJSONDocument::operator=(CPLJSONDocument const&)@Base" 2.3.0 1 + (c++)"GDALAsyncReader::LockBuffer(double)@Base" 1.10.1 1 + (c++)"GDALAsyncReader::UnlockBuffer()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALAsyncReader::~GDALAsyncReader()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::IsUUID_MSI(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::IsUUID_XMP(unsigned char const*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGMLJP2(int, int)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateIPRBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMPBox(GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::GMLSRSLookup(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadAndParse(_IO_FILE*, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::ReadAndParse(char const*, int, int, int, int, int*)@Base" 2.2.0 1 + (c++)"GDALJP2Metadata::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CollectGMLData(GDALJP2Box*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateGMLJP2V2(int, int, char const*, GDALDataset*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateXMLBoxes(GDALDataset*, int*)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::CreateJP2GeoTIFF()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ParseGMLCoverageDesc()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GetGMLJP2GeoreferencingInfo(int&, double*, double*, double*, char const*&, CPLString&, int&)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXML(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::CreateGDALMultiDomainMetadataXMLBox(GDALDataset*, int)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::SetGCPs(int, GDAL_GCP const*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::SetRPCMD(char**)@Base" 2.0.2 1 + (c++)"GDALJP2Metadata::ParseMSIG()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::ReadBoxes(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALJP2Metadata::~GDALJP2Metadata()@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMOFlags(int)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMajorObject::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALMajorObject::BuildMetadataDomainList(char**, int, ...)@Base" 1.11.0 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALMajorObject::~GDALMajorObject()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::RecycleFor(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Internalize()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::DestroyRBMutex()@Base" 1.11.0 1 + (c++)"GDALRasterBlock::Touch_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::Detach_unlocked()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushCacheBlock(int)@Base" 2.0.2 1 + (c++)"GDALRasterBlock::FlushDirtyBlocks()@Base" 2.0.2 1 + (c++)"GDALRasterBlock::EnterDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::LeaveDisableDirtyBlockFlush()@Base" 2.2.2 1 + (c++)"GDALRasterBlock::DropLockForRemovalFromStorage()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::Touch()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Write()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Detach()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::Verify()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::TakeLock()@Base" 2.1.0 1 + (c++)"GDALRasterBlock::MarkClean()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::MarkDirty()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::GDALRasterBlock(GDALRasterBand*, int, int)@Base" 1.10.1 1 + (c++)"GDALRasterBlock::GDALRasterBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GDALRasterBlock::~GDALRasterBlock()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtents(double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtents(double, double, double, double)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddProperty(GMLPropertyDefn*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetExtraInfo()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::MergeSRSName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetExtraInfo(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SerializeToXML()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetElementName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetFeatureCount()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::SetFeatureCount(long long)@Base" 2.0.2 1 + (c++)"GMLFeatureClass::StealProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::InitializeFromXML(CPLXMLNode*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::AddGeometryProperty(GMLGeometryPropertyDefn*)@Base" 1.11.0 1 + (c++)"GMLFeatureClass::HasFeatureProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::ClearGeometryProperties()@Base" 1.11.0 1 + (c++)"GMLFeatureClass::StealGeometryProperties()@Base" 2.0.2 1 + (c++)"GMLFeatureClass::SetName(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GMLFeatureClass(char const*)@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLFeatureClass::~GMLFeatureClass()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::SetCondition(char const*)@Base" 1.11.0 1 + (c++)"GMLPropertyDefn::SetSrcElement(char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::AnalysePropertyValue(GMLProperty const*, bool)@Base" 2.1.0 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::GMLPropertyDefn(char const*, char const*)@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"GMLPropertyDefn::~GMLPropertyDefn()@Base" 1.10.1 1 + (c++)"OGRCurvePolygon::removeRing(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::CastToPolygon(OGRCurvePolygon*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::CasterToPolygon(OGRSurface*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::addRingDirectly(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::stealExteriorRingCurve()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRingDirectlyInternal(OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::empty()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::addRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRCurvePolygon::OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::~OGRCurvePolygon()@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::operator=(OGRCurvePolygon const&)@Base" 2.1.0 1 + (c++)"OGRFeatureQuery::CanUseIndex(swq_expr_node*, OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::CanUseIndex(OGRLayer*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::GetUsedFields()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::FieldCollector(void*, char**)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(swq_expr_node*, OGRLayer*, long long&)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::EvaluateAgainstIndices(OGRLayer*, int*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::Compile(OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.0.2 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, OGRFeatureDefn*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Compile(OGRLayer*, char const*, int, swq_custom_func_registrar*)@Base" 2.3.0 1 + (c++)"OGRFeatureQuery::Evaluate(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRFeatureQuery::~OGRFeatureQuery()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::CastToMultiSurface(OGRMultiPolygon*)@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::_addGeometryWithExpectedSubGeometryType(OGRGeometry const*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::_addGeometryDirectlyWithExpectedSubGeometryType(OGRGeometry*, OGRwkbGeometryType)@Base" 2.2.0 1 + (c++)"OGRMultiPolygon::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiPolygon::OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::~OGRMultiPolygon()@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::operator=(OGRMultiPolygon const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::CastToMultiPolygon(OGRMultiSurface*)@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::OGRMultiSurface(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMultiSurface::OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::~OGRMultiSurface()@Base" 2.0.2 1 + (c++)"OGRMultiSurface::operator=(OGRMultiSurface const&)@Base" 2.1.0 1 + (c++)"OGRMutexedLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SyncToDisk()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CreateField(OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteField(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeomType()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetFIDColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetLayerDefn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ResetReading()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialRef()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ReorderFields(int*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetNextFeature()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetFeatureCount(int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedLayer::GetSpatialFilter()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetIgnoredFields(char const**)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::StartTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::CommitTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetGeometryColumn()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetAttributeFilter(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::RollbackTransaction()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::OGRMutexedLayer(OGRLayer*, int, void*)@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"OGRMutexedLayer::~OGRMutexedLayer()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::SetDstWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetSrcWindow(double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::SetResampling(char const*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetNoDataValue(double)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::SetSrcMaskBand(GDALRasterBand*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::DatasetRasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::GetSrcDstWindow(int, int, int, int, int, int, double*, double*, double*, double*, int*, int*, int*, int*, int*, int*, int*, int*)@Base" 2.0.2 1 + (c++)"VRTSimpleSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::IsSameExceptBandNumber(VRTSimpleSource*)@Base" 1.11.0 1 + (c++)"VRTSimpleSource::UnsetPreservedRelativeFilenames()@Base" 2.0.2 1 + (c++)"VRTSimpleSource::GetBand()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::GetType()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource(VRTSimpleSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTSimpleSource::VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSimpleSource::~VRTSimpleSource()@Base" 1.11.0 1 + (c++)"CADPolylinePFace::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CADPolylinePFace::~CADPolylinePFace()@Base" 2.3.0 1 + (c++)"CPLODBCStatement::DumpResult(_IO_FILE*, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ExecuteSQL(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColData(int, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColSize(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColType(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColumns(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColCount()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::AppendEscaped(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColNullable(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColTypeName(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetPrimaryKeys(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTypeMapping(short)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::ClearColumnData()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColColumnDef(int)@Base" 2.0.2 1 + (c++)"CPLODBCStatement::GetColPrecision(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColDataLength(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CollectResultsInfo()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetRowCountAffected()@Base" 2.0.2 1 + (c++)"CPLODBCStatement::Clear()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Fetch(int, int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(double)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Append(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Failed(int)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::Appendf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetColId(char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::GetTables(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::CPLODBCStatement(CPLODBCSession*)@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLODBCStatement::~CPLODBCStatement()@Base" 1.10.1 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"CPLThreadLocaleC::~CPLThreadLocaleC()@Base" 2.1.0 1 + (c++)"GDALProxyDataset::AdviseRead(int, int, int, int, int, int, GDALDataType, int, int*, char**)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetFileList()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPCount()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::SetGCPs(int, GDAL_GCP const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyDataset::GetDriver()@Base" 1.10.1 1 + (c++)"GDALProxyDataset::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, int, int*, long long, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::flattenTo2D()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CastToLineString(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CastToLinearRing(OGRCompoundCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectly(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CasterToLineString(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::CasterToLinearRing(OGRCurve*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::setCoordinateDimension(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkb(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyFromWkt(OGRGeometry*, OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurveDirectlyInternal(OGRCurve*, double, int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::empty()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::set3D(int)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::swapXY()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::addCurve(OGRCurve*, double)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::transform(OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGRCompoundCurve::OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::~OGRCompoundCurve()@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::operator=(OGRCompoundCurve const&)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextFID(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SyncToDisk()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateField(OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteField(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeomType()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ISetFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetLayerDefn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ResetReading()@Base" 2.1.0 1 + (c++)"OGREditableLayer::DeleteFeature(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::DetectNextFID()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialRef()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ReorderFields(int*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetNextFeature()@Base" 2.1.0 1 + (c++)"OGREditableLayer::ICreateFeature(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetNextByIndex(long long)@Base" 2.1.0 1 + (c++)"OGREditableLayer::TestCapability(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetFeatureCount(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSpatialFilter()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::StartTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::CommitTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetGeometryColumn()@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetAttributeFilter(char const*)@Base" 2.1.0 1 + (c++)"OGREditableLayer::RollbackTransaction()@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetSrcGeomFieldIndex(int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCreateGeomField(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::SetSupportsCurveGeometries(bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::GetExtent(int, OGREnvelope*, int)@Base" 2.1.0 1 + (c++)"OGREditableLayer::Translate(OGRFeatureDefn*, OGRFeature*, bool, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::OGREditableLayer(OGRLayer*, bool, IOGREditableLayerSynchronizer*, bool)@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGREditableLayer::~OGREditableLayer()@Base" 2.1.0 1 + (c++)"OGRGeomFieldDefn::Initialize(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetSpatialRef(OGRSpatialReference*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetName(char const*)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::SetType(OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(OGRGeomFieldDefn const*)@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::OGRGeomFieldDefn(char const*, OGRwkbGeometryType)@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRGeomFieldDefn::~OGRGeomFieldDefn()@Base" 1.11.0 1 + (c++)"OGRPointIterator::destroy(OGRPointIterator*)@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"OGRPointIterator::~OGRPointIterator()@Base" 2.0.2 1 + (c++)"VRTComplexSource::GetMaximum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetMinimum(int, int, int*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::LookupValue(double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetHistogram(int, int, double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTComplexSource::SerializeToXML(char const*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetPowerScaling(double, double, double, double, double)@Base" 1.11.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.2.0 1 + (c++)"CPLErr VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)@Base" 2.2.0 1 + (c++)"VRTComplexSource::SetLinearScaling(double, double)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeStatistics(int, int, int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::ComputeRasterMinMax(int, int, int, double*)@Base" 1.11.0 1 + (c++)"VRTComplexSource::SetColorTableComponent(int)@Base" 1.11.0 1 + (c++)"VRTComplexSource::GetType()@Base" 1.11.0 1 + (c++)"VRTComplexSource::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::RasterIO(GDALDataType, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.3.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::VRTComplexSource(VRTComplexSource const*, double, double)@Base" 2.1.0 1 + (c++)"VRTComplexSource::VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTComplexSource::~VRTComplexSource()@Base" 1.11.0 1 + (c++)"VRTRawRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SetRawLink(char const*, char const*, int, unsigned long long, int, int, char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::ClearRawLink()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTRawRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::VRTRawRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTRawRasterBand::~VRTRawRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::FlushCache()@Base" 2.4.1 1 + (c++)"VRTWarpedDataset::Initialize(void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::GetFileList()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::ProcessBlock(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::IBuildOverviews(char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::VerticalShiftGrid::~VerticalShiftGrid()@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::CreateImplicitOverviews()@Base" 2.0.2 1 + (c++)"VRTWarpedDataset::SetApplyVerticalShiftGrid(char const*, int, double, double, char**)@Base" 2.2.0 1 + (c++)"VRTWarpedDataset::AddBand(GDALDataType, char**)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::VRTWarpedDataset(int, int)@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VRTWarpedDataset::~VRTWarpedDataset()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetRangeStatus(unsigned long long, unsigned long long)@Base" 2.2.0 1 + (c++)"VSIVirtualHandle::ReadMultiRange(int, void**, unsigned long long const*, unsigned int const*)@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::GetNativeFileDescriptor()@Base" 1.11.0 1 + (c++)"VSIVirtualHandle::Flush()@Base" 1.10.1 1 + (c++)"VSIVirtualHandle::Truncate(unsigned long long)@Base" 1.10.1 1 + (c++)"GDALDriverManager::RegisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoLoadDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::AutoSkipDrivers()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::DeregisterDriver(GDALDriver*)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GetDriver(int)@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALDriverManager::~GDALDriverManager()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamInitialize()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetDescription(char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALPamRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::PamClear()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::CloneInfo(GDALRasterBand*, int)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand(int)@Base" 2.1.0 1 + (c++)"GDALPamRasterBand::GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALPamRasterBand::~GDALPamRasterBand()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GetOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::Initialize(GDALWarpOptions const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegion(int, int, int, int, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::WipeOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ReportTiming(char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WipeChunkList()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ValidateOptions()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CollectChunkList(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::CreateKernelMask(GDALWarpKernel*, int, char const*)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpImage(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::ChunkAndWarpMulti(int, int, int, int)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double)@Base" 1.10.1 1 + (c++)"GDALWarpOperation::WarpRegionToBuffer(int, int, int, int, void*, GDALDataType, int, int, int, int, double, double, double, double)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindow(int, int, int, int, int*, int*, int*, int*, double*, double*, double*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CreateDestinationBuffer(int, int, int*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::CollectChunkListInternal(int, int, int, int)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::DestroyDestinationBuffer(void*)@Base" 2.3.0 1 + (c++)"GDALWarpOperation::ComputeSourceWindowStartingFromSource(int, int, int, int, double*, double*, double*, double*)@Base" 2.4.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GDALWarpOperation::~GDALWarpOperation()@Base" 1.10.1 1 + (c++)"GNMGenericNetwork::CreateRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteRule(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FlushCache()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectAll()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayerCount()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DeleteAllRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindConnection(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::TestCapability(char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FillResultLayer(OGRGNMWrappedResultLayer*, std::vector, std::allocator > > const&, int, bool, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewGlobalFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::StoreNetworkSrs()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CheckLayerDriver(char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateGraphLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::FindNearestPoint(OGRPoint const*, std::vector > const&, double)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetAlgorithmName(int, bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetNewVirtualFID()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadMetadataLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ReconnectFeatures(long long, long long, long long, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeatures(long long, long long, long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::AddFeatureGlobalFID(long long, char const*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLine(long long, OGRLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateFeaturesLayer(GDALDataset*)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CreateMetadataLayer(GDALDataset*, int, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByLines(char**, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetFeatureByGlobalFID(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CloseDependentDatasets()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::ConnectPointsByMultiline(long long, OGRMultiLineString const*, std::vector > const&, double, double, double, int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::DisconnectFeaturesWithId(long long)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::Delete()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetPath(long long, long long, GNMGraphAlgorithmType, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetLayer(int)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::CopyLayer(OGRLayer*, char const*, char**)@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::LoadGraph()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::SaveRules()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::~GNMGenericNetwork()@Base" 2.2.0 1 + (c++)"OGRCircularString::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCircularString::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCircularString::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRCircularString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::OGRCircularString(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRCircularString::OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::~OGRCircularString()@Base" 2.0.2 1 + (c++)"OGRCircularString::operator=(OGRCircularString const&)@Base" 2.1.0 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerAttrIndex::~OGRLayerAttrIndex()@Base" 1.10.1 1 + (c++)"OGRLayerDecorator::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SyncToDisk()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateField(OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteField(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeomType()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetFIDColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetLayerDefn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ResetReading()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialRef()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetStyleTable()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ReorderFields(int*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTable(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetNextFeature()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::TestCapability(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 2.1.0 1 + (c++)"OGRLayerDecorator::GetFeatureCount(int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetSpatialFilter()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetIgnoredFields(char const**)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilter(int, OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::StartTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetGeometryColumn()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetAttributeFilter(char const*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetSpatialFilterRect(int, double, double, double, double)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::SetStyleTableDirectly(OGRStyleTable*)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetName()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::GetExtent(int, OGREnvelope*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::OGRLayerDecorator(OGRLayer*, int)@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"OGRLayerDecorator::~OGRLayerDecorator()@Base" 2.0.2 1 + (c++)"S57ClassRegistrar::GetAttrInfo(int)@Base" 1.11.0 1 + (c++)"S57ClassRegistrar::FindAttrByAcronym(char const*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::FindFile(char const*, char const*, bool, _IO_FILE**)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::LoadInfo(char const*, char const*, bool)@Base" 2.2.0 1 + (c++)"S57ClassRegistrar::ReadLine(_IO_FILE*)@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"S57ClassRegistrar::~S57ClassRegistrar()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::IsNoDataInRange(double, GDALDataType)@Base" 2.3.2 1 + (c++)"GDALNoDataMaskBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::GDALNoDataMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataMaskBand::~GDALNoDataMaskBand()@Base" 1.10.1 1 + (c++)"NASAKeywordHandler::GetKeyword(char const*, char const*)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::GetKeywordList()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::Ingest(_IO_FILE*, int)@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::ReadPair(CPLString&, CPLString&, CPLJSONObject&)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::ReadWord(CPLString&, bool, bool, bool*)@Base" 2.2.2 1 + (c++)"NASAKeywordHandler::ReadGroup(char const*, CPLJSONObject&, int)@Base" 2.3.0 1 + (c++)"NASAKeywordHandler::SkipWhite()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"NASAKeywordHandler::~NASAKeywordHandler()@Base" 2.2.0 1 + (c++)"OGRCurveCollection::segmentize(double)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::stealCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::flattenTo2D(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::removeCurve(int, bool)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setMeasured(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::addCurveDirectly(OGRGeometry*, OGRCurve*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::importBodyFromWkb(OGRGeometry*, unsigned char const*, int, int, int (*)(OGRGeometry*, OGRCurve*), OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::importPreambleFromWkb(OGRGeometry*, unsigned char const*, int&, int&, OGRwkbByteOrder&, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::assignSpatialReference(OGRGeometry*, OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRCurveCollection::setCoordinateDimension(OGRGeometry*, int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::empty(OGRGeometry*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::set3D(OGRGeometry*, int)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::swapXY()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::transform(OGRGeometry*, OGRCoordinateTransformation*)@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::OGRCurveCollection(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRCurveCollection::OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::~OGRCurveCollection()@Base" 2.0.2 1 + (c++)"OGRCurveCollection::operator=(OGRCurveCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryFactory::createFromFgf(void const*, OGRSpatialReference*, OGRGeometry**, int, int*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGML(char const*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkb(void const*, OGRSpatialReference*, OGRGeometry**, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const*, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromWkt(char const**, OGRSpatialReference*, OGRGeometry**)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGEOS(GEOSContextHandle_HS*, GEOSGeom_t*)@Base" 1.11.0 1 + (c++)"OGRGeometryFactory::createGeometry(OGRwkbGeometryType)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::destroyGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::organizePolygons(OGRGeometry**, int, int*, char const**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::GetCurveParmeters(double, double, double, double, double, double, double&, double&, double&, double&, double&, double&)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::createFromGeoJson(char const*)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::createFromGeoJson(CPLJSONObject const&)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::curveToLineString(double, double, double, double, double, double, double, double, double, int, double, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToLineString(OGRGeometry*, bool)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceToMultiPoint(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::curveFromLineString(OGRLineString const*, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::forceToMultiPolygon(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::approximateArcAngles(double, double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::transformWithOptions(OGRGeometry const*, OGRCoordinateTransformation*, char**)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::createFromFgfInternal(unsigned char const*, OGRSpatialReference*, OGRGeometry**, int, int*, int)@Base" 2.3.0 1 + (c++)"OGRGeometryFactory::forceToMultiLineString(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryFactory::forceTo(OGRGeometry*, OGRwkbGeometryType, char const* const*)@Base" 2.0.2 1 + (c++)"OGRGeometryFactory::haveGEOS()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::CastToMultiCurve(OGRMultiLineString*)@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::OGRMultiLineString(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"OGRMultiLineString::OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::~OGRMultiLineString()@Base" 1.10.1 1 + (c++)"OGRMultiLineString::operator=(OGRMultiLineString const&)@Base" 2.1.0 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CADDictionaryRecord::~CADDictionaryRecord()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::GetNextJob(CPLWorkerThread*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::SubmitJobs(void (*)(void*), std::vector > const&)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitCompletion(int)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::DeclareJobFinished()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WorkerThreadFunction(void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::Setup(int, void (*)(void*), void**, bool)@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::SubmitJob(void (*)(void*), void*)@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::WaitEvent()@Base" 2.4.1 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"CPLWorkerThreadPool::~CPLWorkerThreadPool()@Base" 2.1.0 1 + (c++)"GDALMDReaderManager::GetReader(char const*, char**, unsigned int)@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALMDReaderManager::~GDALMDReaderManager()@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::AdviseRead(int, int, int, int, int, int, GDALDataType, char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::FlushCache()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetUnitType(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultRAT()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetStatistics(int, int, double*, double*, double*, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorTable(GDALColorTable*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetDefaultRAT(GDALRasterAttributeTable const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetStatistics(double, double, double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::BuildOverviews(char const*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::CreateMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetNoDataValue(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetNoDataValue(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetCategoryNames(char**)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::DeleteNoDataValue()@Base" 2.1.0 1 + (c++)"GDALProxyRasterBand::GetVirtualMemAuto(GDALRWFlag, int*, long long*, char**)@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetDefaultHistogram(double*, double*, int*, unsigned long long**, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetDefaultHistogram(double, double, int, unsigned long long*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"GDALProxyRasterBand::HasArbitraryOverviews()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetColorInterpretation()@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetColorInterpretation(GDALColorInterp)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::Fill(double, double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetScale(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::SetScale(double)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::GetOffset(int*)@Base" 1.10.1 1 + (c++)"GDALProxyRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"GDALProxyRasterBand::SetOffset(double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAliasFor(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM2PNO(double, double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLocalCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTOWGS84(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Dereference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSRSCache(char const*, std::map, std::allocator > > const*&)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetWGS84SRS()@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetEckertIV(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckertVI(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGnomonic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRobinson(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToERM(char*, char*, char*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphToESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAuthority(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetExtension(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMollweide(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPolyconic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMVariant(char const*, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripCTParms(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAxis(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateUnit(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::dumpReadable()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FixupOrdering()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCompoundCS(char const*, OGRSpatialReference const*, OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetSinusoidal(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStatePlane(int, int, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::StripVertical()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromERM(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromOzi(char const* const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPCI(char const*, char const*, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURN(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUrl(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWkt(char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::importFromWkt(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromXML(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::morphFromESRI()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CopyGeogCSFrom(OGRSpatialReference const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMercator2SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromDict(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSG(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromESRI(char**)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromUSGS(long, long, double*, long, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAngularUnits(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIWMPolyconic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNormProjParm(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOrthographic(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGA(int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromProj4(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::AutoIdentifyEPSG()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetFromUserInput(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetStereographic(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromCRSURL(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLinearParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateAuthority(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateVertDatum(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromURNPart(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromWMSAUTO(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsAngularParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWellKnownGeogCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ValidateProjection(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromPanorama(long, long, long, double*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEquirectangular2(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLongitudeParameter(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTargetLinearUnits(char const*, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromMICoordSys(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::DestroySpatialReference(OGRSpatialReference*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::importFromEPSGAInternal(int, char const*)@Base" 2.3.0 1 + (c++)"OGRSpatialReference::ImportFromESRIWisconsinWKT(char const*, double, double, char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGaussSchreiberTMercator(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::ImportFromESRIStatePlaneWKT(int, char const*, char const*, int, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLinearUnitsAndUpdateParameters(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Clear()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Fixup()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAE(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGH(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGS(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetMC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetOS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetPS(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTM(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetCEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOM(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetIGH()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetQSC(double, double)@Base" 2.0.2 1 + (c++)"OGRSpatialReference::SetSCH(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRSpatialReference::SetSOC(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetUTM(int, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVDG(double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Release()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetACEA(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetAxes(char const*, char const*, OGRAxisOrientation, char const*, OGRAxisOrientation)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGEOS(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLAEA(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCCB(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNZMG(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetNode(char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetRoot(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTMSO(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetTPED(double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetBonne(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetHOMAC(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate(OGR_SRSNode*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Reference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetEckert(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeocCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetGeogCS(char const*, char const*, char const*, double, double, char const*, double, char const*, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetKrovak(double, double, double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetLCC1SP(double, double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetProjCS(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetVertCS(char const*, char const*, int)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::SetWagner(int, double, double, double)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(char const*)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::OGRSpatialReference(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::~OGRSpatialReference()@Base" 1.10.1 1 + (c++)"OGRSpatialReference::operator=(OGRSpatialReference const&)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::IWriteBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::GetOverviewCount()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::VRTWarpedRasterBand(GDALDataset*, int, GDALDataType)@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"VRTWarpedRasterBand::~VRTWarpedRasterBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GetMaskFlags()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.4.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::GDALAllValidMaskBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALAllValidMaskBand::~GDALAllValidMaskBand()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::Initialize(GDALDataset*, char const*, char**, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskBand(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverview(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetMaskFlags(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::HaveMaskFile(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::OverviewScan()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::IsInitialized()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviews(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CleanOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::CreateMaskBand(int, int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GetOverviewCount(int)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::TransferSiblingFiles(char**)@Base" 2.1.0 1 + (c++)"GDALDefaultOverviews::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::BuildOverviewsSubDataset(char const*, char const*, int, int*, int, int*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALDefaultOverviews::~GDALDefaultOverviews()@Base" 1.10.1 1 + (c++)"GDALGeorefPamDataset::TryLoadXML(char**)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPCount()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadata(char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadata(char**, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGeoTransform(double*)@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetMetadataItem(char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::SetMetadataItem(char const*, char const*, char const*)@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPProjection()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetProjectionRef()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GetPAMGeorefSrcIndex()@Base" 2.2.0 1 + (c++)"GDALGeorefPamDataset::GetGCPs()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALGeorefPamDataset::~GDALGeorefPamDataset()@Base" 1.11.0 1 + (c++)"GDALProxyPoolDataset::AddSrcBand(int, GDALDataType, int, int)@Base" 2.4.1 1 + (c++)"GDALProxyPoolDataset::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetProjection(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetOpenOptions(char**)@Base" 2.0.2 1 + (c++)"GDALProxyPoolDataset::GetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::SetGeoTransform(double*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPProjection()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetProjectionRef()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetInternalHandle(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::RefUnderlyingDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::AddSrcBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::UnrefUnderlyingDataset(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GetGCPs()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::GDALProxyPoolDataset(char const*, int, int, GDALAccess, int, char const*, double*, char const*)@Base" 2.3.0 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"GDALProxyPoolDataset::~GDALProxyPoolDataset()@Base" 1.10.1 1 + (c++)"OGRMutexedDataSource::ExecuteSQL(char const*, OGRGeometry*, char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::FlushCache()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::DeleteLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadata(char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadata(char**, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ICreateLayer(char const*, OGRSpatialReference*, OGRwkbGeometryType, char**)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::GetLayerCount()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetStyleTable()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::SetStyleTable(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayerByName(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::TestCapability(char const*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetMetadataItem(char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetMetadataItem(char const*, char const*, char const*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::ReleaseResultSet(OGRLayer*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::StartTransaction(int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::CommitTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::RollbackTransaction()@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::WrapLayerIfNecessary(OGRLayer*)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetName()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::GetLayer(int)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::CopyLayer(OGRLayer*, char const*, char**)@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::OGRMutexedDataSource(OGRDataSource*, int, void*, int)@Base" 2.0.2 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRMutexedDataSource::~OGRMutexedDataSource()@Base" 1.11.0 1 + (c++)"OGRPolyhedralSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::flattenTo2D()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::setMeasured(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::removeGeometry(int, int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::setCoordinateDimension(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::empty()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::set3D(int)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::swapXY()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::transform(OGRCoordinateTransformation*)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::~OGRPolyhedralSurface()@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::operator=(OGRPolyhedralSurface const&)@Base" 2.2.0 1 + (c++)"OGRSFDriverRegistrar::GetRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverCount()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDSCount()@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::RegisterDriver(OGRSFDriver*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetDriverByName(char const*)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::CreateVectorOnly(GDALDriver*, char const*, char**)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::DeleteDataSource(GDALDriver*, char const*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::OpenWithDriverArg(GDALDriver*, GDALOpenInfo*)@Base" 2.0.2 1 + (c++)"OGRSFDriverRegistrar::GetDriver(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::GetOpenDS(int)@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"OGRSFDriverRegistrar::~OGRSFDriverRegistrar()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetMaximum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetMinimum(int*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::AddPixelFunction(char const*, CPLErr (*)(void**, int, void*, int, int, GDALDataType, GDALDataType, int, int))@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::GetPixelFunction(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::InitializePython()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::ComputeRasterMinMax(int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionName(char const*)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::SetSourceTransferType(GDALDataType)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::SetPixelFunctionLanguage(char const*)@Base" 2.3.1 1 + (c++)"VRTDerivedRasterBand::Cleanup()@Base" 2.2.0 1 + (c++)"VRTDerivedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTDerivedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::VRTDerivedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTDerivedRasterBand::~VRTDerivedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::GetMaximum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMinimum(int*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::CheckSource(VRTSimpleSource*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetHistogram(double, double, int, unsigned long long*, int, int, int (*)(double, char const*, void*), void*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::AddFuncSource(CPLErr (*)(void*, int, int, int, int, void*), void*, double)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SerializeToXML(char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddSimpleSource(GDALRasterBand*, double, double, double, double, double, double, double, double, char const*, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ConfigureSource(VRTSimpleSource*, GDALRasterBand*, int, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::AddComplexSource(GDALRasterBand*, double, double, double, double, double, double, double, double, double, double, double, int)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::AddMaskBandSource(GDALRasterBand*, double, double, double, double, double, double, double, double)@Base" 2.1.0 1 + (c++)"VRTSourcedRasterBand::ComputeStatistics(int, double*, double*, double*, double*, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::ComputeRasterMinMax(int, double*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IsSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::GetMetadataDomainList()@Base" 1.11.0 1 + (c++)"VRTSourcedRasterBand::CloseDependentDatasets()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IGetDataCoverageStatus(int, int, int, int, int, double*)@Base" 2.2.0 1 + (c++)"VRTSourcedRasterBand::CanUseSourcesMinMaxImplementations()@Base" 1.11.1 1 + (c++)"VRTSourcedRasterBand::XMLInit(CPLXMLNode*, char const*, void*)@Base" 2.3.0 1 + (c++)"VRTSourcedRasterBand::AddSource(VRTSource*)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::IRasterIO(GDALRWFlag, int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*)@Base" 2.0.2 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::VRTSourcedRasterBand(GDALDataset*, int)@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VRTSourcedRasterBand::~VRTSourcedRasterBand()@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetOptions()@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetActualURL(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::GetSignedURL(char const*, char const* const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::IsCaseSensitive(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::GetDiskFreeSpace(char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::SupportsSparseFiles(char const*)@Base" 2.2.0 1 + (c++)"VSIFilesystemHandler::HasOptimizedReadMultiRange(char const*)@Base" 2.3.0 1 + (c++)"VSIFilesystemHandler::Open(char const*, char const*)@Base" 2.1.0 1 + (c++)"VSIFilesystemHandler::Sync(char const*, char const*, char const* const*, int (*)(double, char const*, void*), void*, char***)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::Mkdir(char const*, long)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rmdir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Rename(char const*, char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::Unlink(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::OpenDir(char const*, int, char const* const*)@Base" 2.4.1 1 + (c++)"VSIFilesystemHandler::ReadDir(char const*)@Base" 1.10.1 1 + (c++)"VSIFilesystemHandler::ReadDirEx(char const*, int)@Base" 2.1.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::CPLConfigOptionSetter(char const*, char const*, bool)@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"CPLConfigOptionSetter::~CPLConfigOptionSetter()@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::closeRings()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::segmentize(double)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometry(OGRGeometry const*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::setMeasured(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::getGeometryRef(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::removeGeometry(int, int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::addGeometryDirectly(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::importFromWkbInternal(unsigned char const*, int, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::importFromWktInternal(char const**, int)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::assignSpatialReference(OGRSpatialReference*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::CastToGeometryCollection(OGRGeometryCollection*)@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::TransferMembersAndDestroy(OGRGeometryCollection*, OGRGeometryCollection*)@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::empty()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::set3D(int)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::swapXY()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"OGRGeometryCollection::OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::~OGRGeometryCollection()@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::operator=(OGRGeometryCollection const&)@Base" 2.1.0 1 + (c++)"CPLJSonStreamingParser::StartArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::AdvanceChar(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxDepth(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::DecodeUnicode()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitException(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartNewToken(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckStackEmpty()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SetMaxStringSize(unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartArrayMember()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::StartObjectMember(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EmitUnexpectedChar(char, char const*)@Base" 2.4.1 1 + (c++)"CPLJSonStreamingParser::GetSerializedString[abi:cxx11](char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CheckAndEmitTrueFalseOrNull(char)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Null()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Parse(char const*, unsigned int, bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Reset()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Number(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::String(char const*, unsigned int)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Boolean(bool)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndArray()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::EndObject()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::Exception(char const*)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::SkipSpace(char const*&, unsigned int&)@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLJSonStreamingParser::~CPLJSonStreamingParser()@Base" 2.3.0 1 + (c++)"CPLODBCDriverInstaller::RemoveDriver(char const*, int)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::InstallDriver(char const*, char const*, unsigned short)@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"CPLODBCDriverInstaller::CPLODBCDriverInstaller()@Base" 1.10.1 1 + (c++)"GDALJP2AbstractDataset::GetFileList()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayerCount()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::LoadJP2Metadata(GDALOpenInfo*, char const*)@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::LoadVectorLayers(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::CloseDependentDatasets()@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GetLayer(int)@Base" 2.0.2 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"GDALJP2AbstractDataset::~GDALJP2AbstractDataset()@Base" 1.11.0 1 + (c++)"OGRTriangulatedSurface::addGeometry(OGRGeometry const*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::CastToPolyhedralSurface(OGRTriangulatedSurface*)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::~OGRTriangulatedSurface()@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::operator=(OGRTriangulatedSurface const&)@Base" 2.2.0 1 + (c++)"GDALMultiDomainMetadata::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadata(char**, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::SetMetadataItem(char const*, char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Clear()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::XMLInit(CPLXMLNode*, int)@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::Serialize()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALMultiDomainMetadata::~GDALMultiDomainMetadata()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::FlushCache()@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::GetMaskBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadata(char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetOverview(int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetUnitType()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetColorTable()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetMetadataItem(char const*, char const*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetCategoryNames()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GetRasterSampleOverview(unsigned long long)@Base" 2.0.2 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand(bool)@Base" 2.3.0 1 + (c++)"GDALProxyPoolRasterBand::RefUnderlyingRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::AddSrcMaskBandDescription(GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::UnrefUnderlyingRasterBand(GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, GDALRasterBand*)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::GDALProxyPoolRasterBand(GDALProxyPoolDataset*, int, GDALDataType, int, int)@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GDALProxyPoolRasterBand::~GDALProxyPoolRasterBand()@Base" 1.10.1 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::GMLGeometryPropertyDefn(char const*, char const*, int, int, bool)@Base" 2.1.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GMLGeometryPropertyDefn::~GMLGeometryPropertyDefn()@Base" 1.11.0 1 + (c++)"GDALNoDataValuesMaskBand::IReadBlock(int, int, void*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::GDALNoDataValuesMaskBand(GDALDataset*)@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALNoDataValuesMaskBand::~GDALNoDataValuesMaskBand()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetRowCount(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::DumpReadable(_IO_FILE*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::TranslateToColorTable(int)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::InitializeFromColorTable(GDALColorTable const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::XMLInit(CPLXMLNode*, char const*)@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, char**)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, double*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::ValuesIO(GDALRWFlag, int, int, int, int*)@Base" 1.11.0 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::~GDALRasterAttributeTable()@Base" 1.10.1 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"IOGRTransactionBehaviour::~IOGRTransactionBehaviour()@Base" 2.0.2 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangle*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRLinearRing*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCurvePolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiPolygon*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCompoundCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRCircularString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRMultiLineString*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPolyhedralSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRGeometryCollection*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRTriangulatedSurface*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::visit(OGRPoint*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::_visit(OGRSimpleCurve*)@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultGeometryVisitor::~OGRDefaultGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALAbstractBandBlockCache::CreateBlock(int, int)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::AddBlockToFreeList(GDALRasterBlock*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::FreeDanglingBlocks()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::UnreferenceBlockBase()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::WaitKeepAliveCounter()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::GDALAbstractBandBlockCache(GDALRasterBand*)@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"GDALAbstractBandBlockCache::~GDALAbstractBandBlockCache()@Base" 2.1.0 1 + (c++)"OGRCoordinateTransformation::GetEmitErrors()@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::SetEmitErrors(bool)@Base" 2.2.0 1 + (c++)"OGRCoordinateTransformation::DestroyCT(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"IOGREditableLayerSynchronizer::~IOGREditableLayerSynchronizer()@Base" 2.1.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangle const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRLinearRing const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCurvePolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiPolygon const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCompoundCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRCircularString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRMultiLineString const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPolyhedralSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRGeometryCollection const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRTriangulatedSurface const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::visit(OGRPoint const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::_visit(OGRSimpleCurve const*)@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"OGRDefaultConstGeometryVisitor::~OGRDefaultConstGeometryVisitor()@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetRowCount(int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::CreateColumn(char const*, GDALRATFieldType, GDALRATFieldUsage)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetTableType(GDALRATTableType)@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::AnalyseColumns()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::RemoveStatistics()@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::SetLinearBinning(double, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::ChangesAreWrittenToFile()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, char const*)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, double)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::SetValue(int, int, int)@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::~GDALDefaultRasterAttributeTable()@Base" 1.11.0 1 + (c++)"OGR::transcode(char16_t const*, CPLString&, int)@Base" 2.2.3 1 + (c++)"OGR::transcode(char16_t const*, int)@Base" 2.2.3 1 + (c++)"CADArc::setEndingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::setStartingAngle(double)@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADArc::~CADArc()@Base" 2.3.0 1 + (c++)"CADRay::setVectVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"CADRay::~CADRay()@Base" 2.3.0 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"VSIDIR::~VSIDIR()@Base" 2.4.1 1 + (c++)"CADFile::ReadTables(CADFile::OpenOptions)@Base" 2.2.0 1 + (c++)"CADFile::isReadingUnsupportedGeometries()@Base" 2.2.0 1 + (c++)"CADFile::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADFile::ParseFile(CADFile::OpenOptions, bool)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::CADFile(CADFileIO*)@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADFile::~CADFile()@Base" 2.2.0 1 + (c++)"CADLine::setEnd(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::setStart(CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::CADLine(CADPoint3D const&, CADPoint3D const&)@Base" 2.3.0 1 + (c++)"CADLine::CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADLine::~CADLine()@Base" 2.3.0 1 + (c++)"CADText::setTextValue(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADText::setObliqueAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setRotationAngle(double)@Base" 2.3.0 1 + (c++)"CADText::setHeight(double)@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"CADText::~CADText()@Base" 2.3.0 1 + (c++)"GNMRule::CanConnect(CPLString const&, CPLString const&, CPLString const&)@Base" 2.2.0 1 + (c++)"GNMRule::ParseRuleString()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(char const*)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule(GNMRule const&)@Base" 2.2.0 1 + (c++)"GNMRule::GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"GNMRule::~GNMRule()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADClass::~CADClass()@Base" 2.2.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADHatch::CADHatch()@Base" 2.3.0 1 + (c++)"CADImage::setOptions(bool, bool, unsigned char, unsigned char)@Base" 2.3.0 1 + (c++)"CADImage::setFilePath(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSize(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::addClippingPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setImageSizeInPx(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setResolutionUnits(CADImage::ResolutionUnit)@Base" 2.3.0 1 + (c++)"CADImage::setVertInsertionPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::setClippingBoundaryType(short)@Base" 2.3.0 1 + (c++)"CADImage::setPixelSizeInACADUnits(CADVector const&)@Base" 2.3.0 1 + (c++)"CADImage::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADImage::~CADImage()@Base" 2.3.0 1 + (c++)"CADLayer::getGeometry(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setPlotting(bool)@Base" 2.2.0 1 + (c++)"CADLayer::addAttribute(CADObject const*)@Base" 2.2.0 1 + (c++)"CADLayer::setLineWeight(short)@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryTypes()@Base" 2.2.0 1 + (c++)"CADLayer::getAttributesTags[abi:cxx11]()@Base" 2.2.0 1 + (c++)"CADLayer::setFrozenByDefault(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setId(unsigned int const&)@Base" 2.2.0 1 + (c++)"CADLayer::setOn(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setName(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADLayer::getImage(unsigned int)@Base" 2.2.0 1 + (c++)"CADLayer::setColor(short)@Base" 2.2.0 1 + (c++)"CADLayer::addHandle(long, CADObject::ObjectType, long)@Base" 2.2.0 1 + (c++)"CADLayer::setFrozen(bool)@Base" 2.2.0 1 + (c++)"CADLayer::setHandle(long)@Base" 2.2.0 1 + (c++)"CADLayer::setLocked(bool)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::CADLayer(CADFile*)@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADLayer::~CADLayer()@Base" 2.2.0 1 + (c++)"CADMLine::setScale(double)@Base" 2.3.0 1 + (c++)"CADMLine::addVertex(CADVector const&)@Base" 2.3.0 1 + (c++)"CADMLine::setOpened(bool)@Base" 2.3.0 1 + (c++)"CADMLine::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMLine::~CADMLine()@Base" 2.3.0 1 + (c++)"CADMText::setExtents(double)@Base" 2.3.0 1 + (c++)"CADMText::setRectWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::setExtentsWidth(double)@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADMText::~CADMText()@Base" 2.3.0 1 + (c++)"CADSolid::getCorners()@Base" 2.3.0 1 + (c++)"CADSolid::setElevation(double)@Base" 2.3.0 1 + (c++)"CADSolid::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSolid::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADSolid::~CADSolid()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"CADXLine::~CADXLine()@Base" 2.3.0 1 + (c++)"GNMGraph::ChangeEdge(long long, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteEdge(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DeleteVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::TraceTargets(std::queue > >&, std::set, std::allocator >&, std::vector, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::KShortestPaths(long long, long long, unsigned int)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeBlockState(long long, bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ChangeAllBlockState(bool)@Base" 2.2.0 1 + (c++)"GNMGraph::ConnectedComponents(std::vector > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPath(long long, long long, std::map, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"GNMGraph::DijkstraShortestPathTree(long long, std::map, std::allocator > > const&, std::map, std::allocator > >&)@Base" 2.2.0 1 + (c++)"GNMGraph::Clear()@Base" 2.2.0 1 + (c++)"GNMGraph::AddEdge(long long, long long, long long, bool, double, double)@Base" 2.2.0 1 + (c++)"GNMGraph::AddVertex(long long)@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"GNMGraph::~GNMGraph()@Base" 2.2.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::ConstIterator(OGRCurve const*, bool)@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::~ConstIterator()@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRCurve::CastToLineString(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToLinearRing(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::CastToCompoundCurve(OGRCurve*)@Base" 2.0.2 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::OGRCurve(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRCurve::OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::~OGRCurve()@Base" 1.10.1 1 + (c++)"OGRCurve::operator=(OGRCurve const&)@Base" 2.1.0 1 + (c++)"OGRLayer::GetFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::SetFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::SyncToDisk()@Base" 1.10.1 1 + (c++)"OGRLayer::CreateField(OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteField(int)@Base" 1.10.1 1 + (c++)"OGRLayer::Dereference()@Base" 1.10.1 1 + (c++)"OGRLayer::GetGeomType()@Base" 1.10.1 1 + (c++)"OGRLayer::ISetFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::GetFIDColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::Intersection(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderField(int, int)@Base" 1.10.1 1 + (c++)"OGRLayer::CreateFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"OGRLayer::DeleteFeature(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::GetSpatialRef()@Base" 1.10.1 1 + (c++)"OGRLayer::GetStyleTable()@Base" 1.10.1 1 + (c++)"OGRLayer::InstallFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::ReorderFields(int*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetStyleTable(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::SymDifference(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::AlterFieldDefn(int, OGRFieldDefn*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::FilterGeometry(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::FindFieldIndex(char const*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::ICreateFeature(OGRFeature*)@Base" 2.0.2 1 + (c++)"OGRLayer::SetNextByIndex(long long)@Base" 2.0.2 1 + (c++)"OGRLayer::CreateGeomField(OGRGeomFieldDefn*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::FeatureIterator(OGRLayer*, bool)@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::~FeatureIterator()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator*()@Base" 2.3.0 1 + (c++)"OGRLayer::FeatureIterator::operator++()@Base" 2.3.0 1 + (c++)"OGRLayer::GetFeatureCount(int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetFeaturesRead()@Base" 1.10.1 1 + (c++)"OGRLayer::GetSpatialFilter()@Base" 1.10.1 1 + (c++)"OGRLayer::SetIgnoredFields(char const**)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(OGRGeometry*)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilter(int, OGRGeometry*)@Base" 1.11.0 1 + (c++)"OGRLayer::StartTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::CommitTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtentInternal(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::GetGeometryColumn()@Base" 1.10.1 1 + (c++)"OGRLayer::SetAttributeFilter(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::RollbackTransaction()@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(double, double, double, double)@Base" 1.10.1 1 + (c++)"OGRLayer::SetSpatialFilterRect(int, double, double, double, double)@Base" 1.11.0 1 + (c++)"OGRLayer::SetStyleTableDirectly(OGRStyleTable*)@Base" 1.10.1 1 + (c++)"OGRLayer::InitializeIndexSupport(char const*)@Base" 1.10.1 1 + (c++)"OGRLayer::ConvertGeomsIfNecessary(OGRFeature*)@Base" 2.1.0 1 + (c++)"OGRLayer::AttributeFilterEvaluationNeedsGeometry()@Base" 1.10.1 1 + (c++)"OGRLayer::end()@Base" 2.3.0 1 + (c++)"OGRLayer::Clip(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Erase(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::Union(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::begin()@Base" 2.3.0 1 + (c++)"OGRLayer::Update(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetName()@Base" 1.10.1 1 + (c++)"OGRLayer::Identity(OGRLayer*, OGRLayer*, char**, int (*)(double, char const*, void*), void*)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"OGRLayer::GetExtent(int, OGREnvelope*, int)@Base" 1.11.0 1 + (c++)"OGRLayer::Reference()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRLayer::~OGRLayer()@Base" 1.10.1 1 + (c++)"OGRPoint::flattenTo2D()@Base" 1.10.1 1 + (c++)"OGRPoint::importFromWkb(unsigned char const*, int, OGRwkbVariant, int&)@Base" 2.3.0 1 + (c++)"OGRPoint::importFromWkt(char const**)@Base" 2.3.0 1 + (c++)"OGRPoint::setCoordinateDimension(int)@Base" 1.10.1 1 + (c++)"OGRPoint::empty()@Base" 1.10.1 1 + (c++)"OGRPoint::accept(IOGRGeometryVisitor*)@Base" 2.3.0 1 + (c++)"OGRPoint::swapXY()@Base" 1.10.1 1 + (c++)"OGRPoint::transform(OGRCoordinateTransformation*)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(OGRPoint const&)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint(double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double)@Base" 1.10.1 1 + (c++)"OGRPoint::OGRPoint(double, double, double, double)@Base" 2.1.0 1 + (c++)"OGRPoint::OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::~OGRPoint()@Base" 1.10.1 1 + (c++)"OGRPoint::operator=(OGRPoint const&)@Base" 2.1.0 1 + (c++)"CADAttdef::setPrompt(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttdef::~CADAttdef()@Base" 2.3.0 1 + (c++)"CADAttrib::setElevation(double)@Base" 2.3.0 1 + (c++)"CADAttrib::setAlignmentPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADAttrib::setPositionLocked(bool)@Base" 2.3.0 1 + (c++)"CADAttrib::setTag(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"CADAttrib::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib(CADAttrib const&)@Base" 2.3.0 1 + (c++)"CADAttrib::CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADAttrib::~CADAttrib()@Base" 2.3.0 1 + (c++)"CADCircle::setRadius(double)@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADCircle::~CADCircle()@Base" 2.3.0 1 + (c++)"CADFace3D::setInvisFlags(short)@Base" 2.3.0 1 + (c++)"CADFace3D::addCorner(CADVector const&)@Base" 2.3.0 1 + (c++)"CADFace3D::getCorner(unsigned int)@Base" 2.3.0 1 + (c++)"CADFace3D::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFace3D::~CADFace3D()@Base" 2.3.0 1 + (c++)"CADFileIO::Close()@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::CADFileIO(char const*)@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADFileIO::~CADFileIO()@Base" 2.3.0 1 + (c++)"CADHandle::addOffset(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(std::vector > const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHandle::CADHandle(unsigned char)@Base" 2.2.0 1 + (c++)"CADHandle::operator=(CADHandle const&)@Base" 2.2.0 1 + (c++)"CADHeader::getGroupCode(short)@Base" 2.2.0 1 + (c++)"CADHeader::getValueName(short)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, char const*)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, CADVariant const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, bool)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, double, double, double)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, int)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, long, long)@Base" 2.2.0 1 + (c++)"CADHeader::addValue(short, short)@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADHeader::CADHeader()@Base" 2.2.0 1 + (c++)"CADObject::setCRC(unsigned short)@Base" 2.3.0 1 + (c++)"CADObject::setSize(long)@Base" 2.3.0 1 + (c++)"CADSpline::addFitPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::setRational(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setScenario(long)@Base" 2.3.0 1 + (c++)"CADSpline::getFitPoints()@Base" 2.3.0 1 + (c++)"CADSpline::addControlPoint(CADVector const&)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPoints()@Base" 2.3.0 1 + (c++)"CADSpline::setFitTollerance(double)@Base" 2.3.0 1 + (c++)"CADSpline::addControlPointsWeight(double)@Base" 2.3.0 1 + (c++)"CADSpline::getControlPointsWeights()@Base" 2.3.0 1 + (c++)"CADSpline::setClosed(bool)@Base" 2.3.0 1 + (c++)"CADSpline::setDegree(long)@Base" 2.3.0 1 + (c++)"CADSpline::setWeight(bool)@Base" 2.3.0 1 + (c++)"CADSpline::transform(Matrix const&)@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADSpline::~CADSpline()@Base" 2.3.0 1 + (c++)"CADTables::GetTableHandle(CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::ReadLayersTable(CADFile*, long)@Base" 2.2.0 1 + (c++)"CADTables::AddTable(CADTables::TableType, CADHandle const&)@Base" 2.2.0 1 + (c++)"CADTables::GetLayer(unsigned int)@Base" 2.2.0 1 + (c++)"CADTables::FillLayer(CADEntityObject const*)@Base" 2.2.0 1 + (c++)"CADTables::ReadTable(CADFile*, CADTables::TableType)@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADTables::CADTables()@Base" 2.2.0 1 + (c++)"CADVector::setX(double)@Base" 2.3.0 1 + (c++)"CADVector::setY(double)@Base" 2.3.0 1 + (c++)"CADVector::setZ(double)@Base" 2.3.0 1 + (c++)"CADVector::setBHasZ(bool)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::CADVector(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector(double, double, double)@Base" 2.3.0 1 + (c++)"CADVector::CADVector()@Base" 2.3.0 1 + (c++)"CADVector::operator=(CADVector const&)@Base" 2.3.0 1 + (c++)"CADVector::operator==(CADVector const&)@Base" 2.3.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(std::__cxx11::basic_string, std::allocator > const&, char)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"CPLString::replaceAll(char, char)@Base" 2.2.0 1 + (c++)"CPLString::Trim()@Base" 1.10.1 1 + (c++)"CPLString::Printf(char const*, ...)@Base" 1.10.1 1 + (c++)"CPLString::Recode(char const*, char const*)@Base" 1.10.1 1 + (c++)"CPLString::FormatC(double, char const*)@Base" 1.10.1 1 + (c++)"CPLString::tolower()@Base" 1.10.1 1 + (c++)"CPLString::toupper()@Base" 1.10.1 1 + (c++)"CPLString::vPrintf(char const*, __va_list_tag*)@Base" 1.10.1 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"CPLString::~CPLString()@Base" 2.1.0 1 + (c++)"S57Reader::FetchPoint(int, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadVector(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::SetOptions(char**)@Base" 1.10.1 1 + (c++)"S57Reader::ReadFeature(int, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyUpdates(DDFModule*)@Base" 1.10.1 1 + (c++)"S57Reader::RecodeByDSSI(char const*, bool)@Base" 1.10.1 1 + (c++)"S57Reader::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Reader::AddFeatureDefn(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::GetNextFEIndex(int)@Base" 1.10.1 1 + (c++)"S57Reader::SetNextFEIndex(int, int)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleFeature(DDFRecord*, OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::ReadNextFeature(OGRFeatureDefn*)@Base" 1.10.1 1 + (c++)"S57Reader::CollectClassList(std::vector >&)@Base" 1.11.0 1 + (c++)"S57Reader::ApplyRecordUpdate(DDFRecord*, DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::FindAndApplyUpdates(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::GenerateLNAMAndRefs(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleAreaGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleLineGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssemblePointGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::NextPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::ClearPendingMultiPoint()@Base" 1.10.1 1 + (c++)"S57Reader::GenerateFSPTAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::AssembleSoundingGeometry(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::ApplyObjectClassAttributes(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Reader::Open(int)@Base" 1.10.1 1 + (c++)"S57Reader::Close()@Base" 1.10.1 1 + (c++)"S57Reader::Ingest()@Base" 1.10.1 1 + (c++)"S57Reader::Rewind()@Base" 1.10.1 1 + (c++)"S57Reader::ReadDSID()@Base" 1.10.1 1 + (c++)"S57Reader::FetchLine(DDFRecord*, int, int, OGRLineString*)@Base" 1.10.1 1 + (c++)"S57Reader::FindFDefn(DDFRecord*)@Base" 1.10.1 1 + (c++)"S57Reader::GetExtent(OGREnvelope*, int)@Base" 1.10.1 1 + (c++)"S57Reader::ParseName(DDFField*, int, int*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::S57Reader(char const*)@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Reader::~S57Reader()@Base" 1.10.1 1 + (c++)"S57Writer::MakeRecord()@Base" 1.10.1 1 + (c++)"S57Writer::CreateS57File(char const*)@Base" 1.10.1 1 + (c++)"S57Writer::SetClassBased(S57ClassRegistrar*, S57ClassContentExplorer*)@Base" 1.11.0 1 + (c++)"S57Writer::WriteGeometry(DDFRecord*, int, double*, double*, double*)@Base" 1.10.1 1 + (c++)"S57Writer::WritePrimitive(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteCompleteFeature(OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::Close()@Base" 1.10.1 1 + (c++)"S57Writer::WriteATTF(DDFRecord*, OGRFeature*)@Base" 1.10.1 1 + (c++)"S57Writer::WriteDSID(int, int, char const*, char const*, char const*, char const*, char const*, char const*, int, char const*, int, int, int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::WriteDSPM(int, int, int, int, int, int)@Base" 2.4.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"S57Writer::~S57Writer()@Base" 1.10.1 1 + (c++)"VRTSource::FlushCache()@Base" 2.3.0 1 + (c++)"VRTSource::GetFileList(char***, int*, int*, _CPLHashSet*)@Base" 1.11.0 1 + (c++)"VRTSource::IsSimpleSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"VRTSource::~VRTSource()@Base" 1.11.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > __gnu_cxx::__to_xstring, std::allocator >, char>(int (*)(char*, unsigned int, char const*, __va_list_tag*), unsigned int, char const*, ...)@Base" 2.2.0 1 + (c++)"CADClasses::getClassByNum(short) const@Base" 2.2.0 1 + (c++)"CADClasses::print() const@Base" 2.2.0 1 + (c++)"CADEllipse::getAxisRatio() const@Base" 2.3.0 1 + (c++)"CADEllipse::print() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getPosition() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getXAxisAng() const@Base" 2.3.0 1 + (c++)"CADPoint3D::getExtrusion() const@Base" 2.3.0 1 + (c++)"CADPoint3D::print() const@Base" 2.3.0 1 + (c++)"CADVariant::getDecimal() const@Base" 2.2.0 1 + (c++)"CADVariant::getX() const@Base" 2.2.0 1 + (c++)"CADVariant::getY() const@Base" 2.2.0 1 + (c++)"CADVariant::getZ() const@Base" 2.2.0 1 + (c++)"CADVariant::getReal() const@Base" 2.2.0 1 + (c++)"CADVariant::getType() const@Base" 2.2.0 1 + (c++)"CADVariant::getHandle() const@Base" 2.2.0 1 + (c++)"CADVariant::getString[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADXRecord::getRecordData[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"GMLFeature::GetGeometryRef(int) const@Base" 1.11.0 1 + (c++)"GNMNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMNetwork::GetName() const@Base" 2.2.0 1 + (c++)"IGMLReader::IsSequentialLayers() const@Base" 1.10.1 1 + (c++)"OGRFeature::CopySelfTo(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDouble() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsString() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDateTime(int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetRawValue() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsDoubleList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsStringList[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsIntegerList() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetAsInteger64List() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsNull() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetDefn() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::IsUnset() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::GetIndex() const@Base" 2.3.0 1 + (c++)"OGRFeature::FieldValue::operator char const* const*() const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSet(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::DumpReadable(_IO_FILE*, char**) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleTable() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeometryRef() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetStyleString() const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetGeomFieldRef(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsBinary(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDouble(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsString(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRFeature::ConstFieldIterator::operator!=(OGRFeature::ConstFieldIterator const&) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, float*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDateTime(int, int*, int*, int*, int*, int*, int*, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsDoubleList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsStringList(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::IsFieldSetAndNotNull(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsIntegerList(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsInteger64List(int, int*) const@Base" 2.3.0 1 + (c++)"OGRFeature::GetFieldAsSerializedJSon(int) const@Base" 2.3.0 1 + (c++)"OGRFeature::end() const@Base" 2.3.0 1 + (c++)"OGRFeature::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeature::Equal(OGRFeature const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::begin() const@Base" 2.3.0 1 + (c++)"OGRFeature::Validate(int, int) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](char const*) const@Base" 2.3.0 1 + (c++)"OGRFeature::operator[](int) const@Base" 2.3.0 1 + (c++)"OGRPolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getExteriorRing() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPolygon::getInteriorRing(int) const@Base" 1.10.1 1 + (c++)"OGRPolygon::IsPointOnSurface(OGRPoint const*) const@Base" 1.10.1 1 + (c++)"OGRPolygon::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRPolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolygon::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRPolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRSurface::PointOnSurface(OGRPoint*) const@Base" 2.3.0 1 + (c++)"CADGeometry::getThickness() const@Base" 2.3.0 1 + (c++)"CADGeometry::getBlockAttributes() const@Base" 2.3.0 1 + (c++)"CADGeometry::getEED[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADGeometry::getType() const@Base" 2.3.0 1 + (c++)"CADGeometry::getColor() const@Base" 2.3.0 1 + (c++)"GDALDataset::GetRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::GetSummaryRefCount() const@Base" 2.0.2 1 + (c++)"GDALDataset::Bands::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Bands::Iterator::operator!=(GDALDataset::Bands::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::size() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Layers::Iterator::operator!=(GDALDataset::Layers::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::end() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::begin() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator*() const@Base" 2.3.0 1 + (c++)"GDALDataset::Features::Iterator::operator!=(GDALDataset::Features::Iterator const&) const@Base" 2.3.0 1 + (c++)"GDALDataset::GetShared() const@Base" 2.2.0 1 + (c++)"OGRGeometry::ConvexHull() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Difference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance3D(OGRGeometry const*) const@Base" 2.2.0 1 + (c++)"OGRGeometry::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::Polygonize() const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGML(char const* const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToKML() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getBoundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersection(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::dumpReadable(_IO_FILE*, char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRGeometry::exportToGEOS(GEOSContextHandle_HS*) const@Base" 1.11.0 1 + (c++)"OGRGeometry::exportToJson() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SymDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::UnionCascaded() const@Base" 1.10.1 1 + (c++)"OGRGeometry::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometry::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometry::IsSFCGALCompatible() const@Base" 2.2.0 1 + (c++)"OGRGeometry::getIsoGeometryType() const@Base" 1.11.0 1 + (c++)"OGRGeometry::CoordinateDimension() const@Base" 2.1.0 1 + (c++)"OGRGeometry::SymmetricDifference(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::DelaunayTriangulation(double, int) const@Base" 2.1.0 1 + (c++)"OGRGeometry::PointOnSurfaceInternal(OGRPoint*) const@Base" 2.1.0 1 + (c++)"OGRGeometry::getCoordinateDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometry::SimplifyPreserveTopology(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Equal(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Union(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Buffer(double, int) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsRing() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Within(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Crosses(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsValid() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Touches(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Boundary() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Centroid(OGRPoint*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Contains(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Disjoint(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Distance(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::IsSimple() const@Base" 1.10.1 1 + (c++)"OGRGeometry::Overlaps(OGRGeometry const*) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Simplify(double) const@Base" 1.10.1 1 + (c++)"OGRGeometry::Intersect(OGRGeometry*) const@Base" 1.10.1 1 + (c++)"OGRTriangle::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangle::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangle::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangle::quickValidityCheck() const@Base" 2.2.0 1 + (c++)"OGRTriangle::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGR_SRSNode::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::NeedsQuoting() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::Clone() const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetNode(char const*) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::GetChild(int) const@Base" 1.10.1 1 + (c++)"OGR_SRSNode::FindChild(char const*) const@Base" 1.10.1 1 + (c++)"CPLJSONArray::Size() const@Base" 2.3.0 1 + (c++)"CPLJSONArray::operator[](int) const@Base" 2.3.0 1 + (c++)"GDALOpenInfo::AreSiblingFilesLoaded() const@Base" 2.1.0 1 + (c++)"OGRFieldDefn::GetDefault() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsDefaultDriverSpecific() const@Base" 2.0.2 1 + (c++)"OGRFieldDefn::IsSame(OGRFieldDefn const*) const@Base" 1.10.1 1 + (c++)"CADDictionary::getRecordByName(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.2.0 1 + (c++)"CADLWPolyline::getElevation() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getConstWidth() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getVectExtrusion() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::print() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::isClosed() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getBulges() const@Base" 2.3.0 1 + (c++)"CADLWPolyline::getWidths() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::getVertexCount() const@Base" 2.3.0 1 + (c++)"CADPolyline3D::print() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetInteger(std::__cxx11::basic_string, std::allocator > const&, int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetChildren() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObjectByPath(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator >&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::Format[abi:cxx11](CPLJSONObject::PrettyFormat) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetObj(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToBool(bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToLong(long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetBool(std::__cxx11::basic_string, std::allocator > const&, bool) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetLong(std::__cxx11::basic_string, std::allocator > const&, long long) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetType() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::IsValid() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToArray() const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetArray(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToDouble(double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToString(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetDouble(std::__cxx11::basic_string, std::allocator > const&, double) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::GetString(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::ToInteger(int) const@Base" 2.3.0 1 + (c++)"CPLJSONObject::operator[](std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"CPLStringList::FetchBoolean(char const*, int) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValue(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchNameValueDef(char const*, char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::Count() const@Base" 1.10.1 1 + (c++)"CPLStringList::FindName(char const*) const@Base" 1.10.1 1 + (c++)"CPLStringList::FetchBool(char const*, bool) const@Base" 2.1.0 1 + (c++)"CPLStringList::operator[](int) const@Base" 1.10.1 1 + (c++)"OGRLineString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRLineString::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLineString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLineString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLineString::get_Area() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRLinearRing::isClockwise() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_exportToWkb(OGRwkbByteOrder, int, unsigned char*) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::isPointInRing(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRLinearRing::isPointOnRingBoundary(OGRPoint const*, int) const@Base" 1.10.1 1 + (c++)"OGRLinearRing::clone() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRLinearRing::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRLinearRing::_WkbSize(int) const@Base" 1.10.1 1 + (c++)"OGRMultiCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPoint::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALColorTable::GetColorEntry(int) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryAsRGB(int, GDALColorEntry*) const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetColorEntryCount() const@Base" 1.10.1 1 + (c++)"GDALColorTable::GetPaletteInterpretation() const@Base" 1.10.1 1 + (c++)"GDALColorTable::Clone() const@Base" 1.10.1 1 + (c++)"GDALColorTable::IsSame(GDALColorTable const*) const@Base" 2.0.2 1 + (c++)"OGRFeatureDefn::GetGeomType() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsStyleIgnored() const@Base" 2.2.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldDefn(int) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldCount() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetGeomFieldIndex(char const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsGeometryIgnored() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::ComputeMapForSetFrom(OGRFeatureDefn const*, bool) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetFieldIndexCaseSensitive(char const*) const@Base" 2.4.1 1 + (c++)"OGRFeatureDefn::Clone() const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::IsSame(OGRFeatureDefn const*) const@Base" 2.3.0 1 + (c++)"OGRFeatureDefn::GetName() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getSubLine(double, double, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::ConstIterator::operator!=(OGRSimpleCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::get_LinearArea() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::end() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getM(int) const@Base" 2.1.0 1 + (c++)"OGRSimpleCurve::getZ(int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Project(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::Iterator::operator!=(OGRSimpleCurve::Iterator const&) const@Base" 2.3.0 1 + (c++)"OGRSimpleCurve::getPoint(int, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(OGRRawPoint*, double*) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int) const@Base" 2.0.2 1 + (c++)"OGRSimpleCurve::getPoints(void*, int, void*, int, void*, int, void*, int) const@Base" 2.1.0 1 + (c++)"GDALMajorObject::GetMOFlags() const@Base" 2.2.0 1 + (c++)"GDALMajorObject::GetDescription() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetProperty(int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementName() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetPropertyIndex(char const*) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetElementNameLen() const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryProperty(int) const@Base" 1.11.0 1 + (c++)"GMLFeatureClass::GetPropertyIndexBySrcElement(char const*, int) const@Base" 1.10.1 1 + (c++)"GMLFeatureClass::GetGeometryPropertyIndexBySrcElement(char const*) const@Base" 1.11.0 1 + (c++)"OGRCurvePolygon::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::CurvePolyToPoly(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToPolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getNumInteriorRings() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getExteriorRingCurve() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::getInteriorRingCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::GetCasterToCurvePolygon() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::clone() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCurvePolygon::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::Contains(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::get_Area() const@Base" 2.0.2 1 + (c++)"OGRCurvePolygon::checkRing(OGRCurve*) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiPolygon::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiPolygon::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRMultiSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getDimension() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::PointOnSurface(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::NeedMaxValAdjustment() const@Base" 2.1.0 1 + (c++)"VRTSimpleSource::DstToSrc(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"VRTSimpleSource::SrcToDst(double, double, double&, double&) const@Base" 2.3.0 1 + (c++)"CADPolylinePFace::print() const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::StartPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getNumPoints() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getPointIterator() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::CurveToLineInternal(double, char const* const*, int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::clone() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCompoundCurve::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::EndPoint(OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRCompoundCurve::get_Area() const@Base" 2.0.2 1 + (c++)"OGRGeomFieldDefn::GetSpatialRef() const@Base" 2.3.0 1 + (c++)"OGRGeomFieldDefn::IsSame(OGRGeomFieldDefn const*) const@Base" 2.3.0 1 + (c++)"VRTComplexSource::AreValuesUnchanged() const@Base" 2.3.2 1 + (c++)"VRTWarpedDataset::GetBlockSize(int*, int*) const@Base" 2.3.0 1 + (c++)"GDALDriverManager::GetDriverCount() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetVersion() const@Base" 2.2.0 1 + (c++)"GNMGenericNetwork::GetRules() const@Base" 2.2.0 1 + (c++)"OGRCircularString::get_Length() const@Base" 2.0.2 1 + (c++)"OGRCircularString::CurveToLine(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsValidFast() const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IsFullCircle(double&, double&, double&) const@Base" 2.0.2 1 + (c++)"OGRCircularString::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::IntersectsPoint(OGRPoint const*) const@Base" 2.2.3 1 + (c++)"OGRCircularString::getGeometryName() const@Base" 2.0.2 1 + (c++)"OGRCircularString::getGeometryType() const@Base" 2.0.2 1 + (c++)"OGRCircularString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCircularString::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLineString() const@Base" 2.0.2 1 + (c++)"OGRCircularString::GetCasterToLinearRing() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_AreaOfCurveSegments() const@Base" 2.0.2 1 + (c++)"OGRCircularString::ExtendEnvelopeWithCircular(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::Value(double, OGRPoint*) const@Base" 2.0.2 1 + (c++)"OGRCircularString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRCircularString::IsValid() const@Base" 2.0.2 1 + (c++)"OGRCircularString::get_Area() const@Base" 2.0.2 1 + (c++)"NASAKeywordHandler::GetJsonObject() const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::exportToWkb(OGRGeometry const*, OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::exportToWkt(OGRGeometry const*, char**) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getEnvelope(OGREnvelope3D*) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getNumCurves() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::Equals(OGRCurveCollection const*) const@Base" 2.3.0 1 + (c++)"OGRCurveCollection::IsEmpty() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::WkbSize() const@Base" 2.0.2 1 + (c++)"OGRCurveCollection::getCurve(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRMultiLineString::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRMultiLineString::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"CADDictionaryRecord::getType() const@Base" 2.4.1 1 + (c++)"OGRSpatialReference::GetTOWGS84(double*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetUTMZone(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsCompound() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsVertical() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::CloneGeogCS() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindMatches(char**, int*, int**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAttrNode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetNormInfo() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsProjected() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPCI(char**, char**, double**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToWkt(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToXML(char**, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::FindProjParm(char const*, OGR_SRSNode const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAttrValue(char const*, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetExtension(char const*, char const*, char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMajor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetSemiMinor(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeocentric() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsGeographic() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSameGeogCS(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::IsSameVertCS(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToUSGS(long*, long*, double**, long*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEPSGGeogCS() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::exportToProj4(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetLinearUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetLinearUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAngularUnits(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAngularUnits(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetNormProjParm(char const*, double, int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityCode(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetAuthorityName(char const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetInvFlattening(int*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetPrimeMeridian(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPanorama(long*, long*, long*, long*, double*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToPrettyWkt(char**, int) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::exportToMICoordSys(char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::EPSGTreatsAsLatLong() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char**) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::GetTargetLinearUnits(char const*, char const**) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetSquaredEccentricity() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::convertToOtherProjection(char const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::EPSGTreatsAsNorthingEasting() const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::Clone() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsSame(OGRSpatialReference const*, char const* const*) const@Base" 2.3.0 1 + (c++)"OGRSpatialReference::GetAxis(char const*, int, OGRAxisOrientation*) const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::IsLocal() const@Base" 1.10.1 1 + (c++)"OGRSpatialReference::Validate() const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWkt(char**, OGRwkbVariant) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getEnvelope(OGREnvelope3D*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getDimension() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::PointOnSurface(OGRPoint*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryRef(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getNumGeometries() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::hasCurveGeometry(int) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToCurvePolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::clone() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPolyhedralSurface::IsEmpty() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::WkbSize() const@Base" 2.2.0 1 + (c++)"OGRPolyhedralSurface::get_Area() const@Base" 2.2.0 1 + (c++)"OGRGeometryCollection::get_Length() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRGeometryCollection::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getDimension() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryRef(int) const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::getCurveGeometry(char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getNumGeometries() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::hasCurveGeometry(int) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::getLinearGeometry(double, char const* const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::exportToWktInternal(char**, OGRwkbVariant, char const*) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.0.2 1 + (c++)"OGRGeometryCollection::clone() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRGeometryCollection::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::WkbSize() const@Base" 1.10.1 1 + (c++)"OGRGeometryCollection::get_Area() const@Base" 1.10.1 1 + (c++)"OGRTriangulatedSurface::getGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryName() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::getSubGeometryType() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::isCompatibleSubType(OGRwkbGeometryType) const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::GetCasterToMultiPolygon() const@Base" 2.2.0 1 + (c++)"OGRTriangulatedSurface::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(double) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::GetRowOfValue(int) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::SerializeJSON() const@Base" 2.0.2 1 + (c++)"GDALRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.10.1 1 + (c++)"GDALRasterAttributeTable::Serialize() const@Base" 1.10.1 1 + (c++)"OGRFeatureUniquePtrDeleter::operator()(OGRFeature*) const@Base" 2.3.0 1 + (c++)"OGRGeometryUniquePtrDeleter::operator()(OGRGeometry*) const@Base" 2.3.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetNameOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetTableType() const@Base" 2.4.1 1 + (c++)"GDALDefaultRasterAttributeTable::GetTypeOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColOfUsage(GDALRATFieldUsage) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(double) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetRowOfValue(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetUsageOfCol(int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsInt(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetColumnCount() const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetLinearBinning(double*, double*) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsDouble(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::GetValueAsString(int, int) const@Base" 1.11.0 1 + (c++)"GDALDefaultRasterAttributeTable::Clone() const@Base" 1.11.0 1 + (c++)"OGRPreparedGeometryUniquePtrDeleter::operator()(_OGRPreparedGeometry*) const@Base" 2.3.0 1 + (c++)"CADArc::getEndingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::getStartingAngle() const@Base" 2.3.0 1 + (c++)"CADArc::print() const@Base" 2.3.0 1 + (c++)"CADRay::getVectVector() const@Base" 2.3.0 1 + (c++)"CADRay::print() const@Base" 2.3.0 1 + (c++)"CADFile::getClasses() const@Base" 2.2.0 1 + (c++)"CADFile::GetLayersCount() const@Base" 2.2.0 1 + (c++)"CADFile::getHeader() const@Base" 2.2.0 1 + (c++)"CADFile::getTables() const@Base" 2.2.0 1 + (c++)"CADLine::print() const@Base" 2.3.0 1 + (c++)"CADLine::getEnd() const@Base" 2.3.0 1 + (c++)"CADLine::getStart() const@Base" 2.3.0 1 + (c++)"CADText::getTextValue[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADText::getObliqueAngle() const@Base" 2.3.0 1 + (c++)"CADText::getRotationAngle() const@Base" 2.3.0 1 + (c++)"CADText::print() const@Base" 2.3.0 1 + (c++)"CADText::getHeight() const@Base" 2.3.0 1 + (c++)"GNMRule::IsAcceptAny() const@Base" 2.2.0 1 + (c++)"GNMRule::GetSourceLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetTargetLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::GetConnectorLayerName() const@Base" 2.2.0 1 + (c++)"GNMRule::c_str() const@Base" 2.2.0 1 + (c++)"GNMRule::GetType() const@Base" 2.2.0 1 + (c++)"GNMRule::IsValid() const@Base" 2.2.0 1 + (c++)"GNMRule::operator char const*() const@Base" 2.2.0 1 + (c++)"CADImage::getFilePath[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSize() const@Base" 2.3.0 1 + (c++)"CADImage::getImageSizeInPx() const@Base" 2.3.0 1 + (c++)"CADImage::getResolutionUnits() const@Base" 2.3.0 1 + (c++)"CADImage::getVertInsertionPoint() const@Base" 2.3.0 1 + (c++)"CADImage::getClippingBoundaryType() const@Base" 2.3.0 1 + (c++)"CADImage::getPixelSizeInACADUnits() const@Base" 2.3.0 1 + (c++)"CADImage::print() const@Base" 2.3.0 1 + (c++)"CADLayer::getPlotting() const@Base" 2.2.0 1 + (c++)"CADLayer::getImageCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getLineWeight() const@Base" 2.2.0 1 + (c++)"CADLayer::getGeometryCount() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozenByDefault() const@Base" 2.2.0 1 + (c++)"CADLayer::getId() const@Base" 2.2.0 1 + (c++)"CADLayer::getOn() const@Base" 2.2.0 1 + (c++)"CADLayer::getName[abi:cxx11]() const@Base" 2.2.0 1 + (c++)"CADLayer::getColor() const@Base" 2.2.0 1 + (c++)"CADLayer::getFrozen() const@Base" 2.2.0 1 + (c++)"CADLayer::getHandle() const@Base" 2.2.0 1 + (c++)"CADLayer::getLocked() const@Base" 2.2.0 1 + (c++)"CADMLine::print() const@Base" 2.3.0 1 + (c++)"CADMLine::getScale() const@Base" 2.3.0 1 + (c++)"CADMLine::isOpened() const@Base" 2.3.0 1 + (c++)"CADMText::getExtents() const@Base" 2.3.0 1 + (c++)"CADMText::getRectWidth() const@Base" 2.3.0 1 + (c++)"CADMText::getExtentsWidth() const@Base" 2.3.0 1 + (c++)"CADMText::print() const@Base" 2.3.0 1 + (c++)"CADSolid::getElevation() const@Base" 2.3.0 1 + (c++)"CADSolid::print() const@Base" 2.3.0 1 + (c++)"CADXLine::print() const@Base" 2.3.0 1 + (c++)"GNMGraph::GetOutEdges(long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::GetOppositVertex(long long, long long) const@Base" 2.2.0 1 + (c++)"GNMGraph::CheckVertexBlocked(long long) const@Base" 2.2.0 1 + (c++)"OGRCurve::getDimension() const@Base" 2.0.2 1 + (c++)"OGRCurve::get_IsClosed() const@Base" 1.10.1 1 + (c++)"OGRCurve::ConstIterator::operator*() const@Base" 2.3.0 1 + (c++)"OGRCurve::ConstIterator::operator!=(OGRCurve::ConstIterator const&) const@Base" 2.3.0 1 + (c++)"OGRCurve::ContainsPoint(OGRPoint const*) const@Base" 2.0.2 1 + (c++)"OGRCurve::IntersectsPoint(OGRPoint const*) const@Base" 2.3.0 1 + (c++)"OGRCurve::end() const@Base" 2.3.0 1 + (c++)"OGRCurve::begin() const@Base" 2.3.0 1 + (c++)"OGRCurve::IsConvex() const@Base" 2.0.2 1 + (c++)"OGRLayer::GetRefCount() const@Base" 1.10.1 1 + (c++)"OGRLayer::FeatureIterator::operator!=(OGRLayer::FeatureIterator const&) const@Base" 2.3.0 1 + (c++)"OGRPoint::Intersects(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::exportToWkb(OGRwkbByteOrder, unsigned char*, OGRwkbVariant) const@Base" 1.11.0 1 + (c++)"OGRPoint::exportToWkt(char**, OGRwkbVariant) const@Base" 2.0.2 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getEnvelope(OGREnvelope3D*) const@Base" 1.10.1 1 + (c++)"OGRPoint::getDimension() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryName() const@Base" 1.10.1 1 + (c++)"OGRPoint::getGeometryType() const@Base" 1.10.1 1 + (c++)"OGRPoint::clone() const@Base" 1.10.1 1 + (c++)"OGRPoint::Equals(OGRGeometry const*) const@Base" 2.3.0 1 + (c++)"OGRPoint::Within(OGRGeometry const*) const@Base" 2.0.2 1 + (c++)"OGRPoint::accept(IOGRConstGeometryVisitor*) const@Base" 2.3.0 1 + (c++)"OGRPoint::IsEmpty() const@Base" 1.10.1 1 + (c++)"OGRPoint::WkbSize() const@Base" 1.10.1 1 + (c++)"CADAttdef::print() const@Base" 2.3.0 1 + (c++)"CADAttdef::getPrompt[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADAttrib::getElevation() const@Base" 2.3.0 1 + (c++)"CADAttrib::isPositionLocked() const@Base" 2.3.0 1 + (c++)"CADAttrib::getAlignmentPoint() const@Base" 2.3.0 1 + (c++)"CADAttrib::print() const@Base" 2.3.0 1 + (c++)"CADAttrib::getTag[abi:cxx11]() const@Base" 2.3.0 1 + (c++)"CADCircle::print() const@Base" 2.3.0 1 + (c++)"CADCircle::getRadius() const@Base" 2.3.0 1 + (c++)"CADFace3D::getInvisFlags() const@Base" 2.3.0 1 + (c++)"CADFace3D::print() const@Base" 2.3.0 1 + (c++)"CADFileIO::GetFilePath() const@Base" 2.3.0 1 + (c++)"CADFileIO::IsOpened() const@Base" 2.3.0 1 + (c++)"CADHandle::isNull() const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong(CADHandle const&) const@Base" 2.2.0 1 + (c++)"CADHandle::getAsLong() const@Base" 2.2.0 1 + (c++)"CADHeader::print() const@Base" 2.2.0 1 + (c++)"CADHeader::getCode(int) const@Base" 2.2.0 1 + (c++)"CADHeader::getSize() const@Base" 2.2.0 1 + (c++)"CADHeader::getValue(short, CADVariant const&) const@Base" 2.2.0 1 + (c++)"CADObject::getCRC() const@Base" 2.3.0 1 + (c++)"CADObject::getSize() const@Base" 2.3.0 1 + (c++)"CADObject::getType() const@Base" 2.3.0 1 + (c++)"CADSpline::isRational() const@Base" 2.3.0 1 + (c++)"CADSpline::getScenario() const@Base" 2.3.0 1 + (c++)"CADSpline::getFitTollerance() const@Base" 2.3.0 1 + (c++)"CADSpline::print() const@Base" 2.3.0 1 + (c++)"CADSpline::isClosed() const@Base" 2.3.0 1 + (c++)"CADSpline::getDegree() const@Base" 2.3.0 1 + (c++)"CADSpline::getWeight() const@Base" 2.3.0 1 + (c++)"CADTables::GetLayerCount() const@Base" 2.2.0 1 + (c++)"CADVector::getX() const@Base" 2.3.0 1 + (c++)"CADVector::getY() const@Base" 2.3.0 1 + (c++)"CADVector::getZ() const@Base" 2.3.0 1 + (c++)"CADVector::getBHasZ() const@Base" 2.3.0 1 + (c++)"CPLString::ifind(char const*, unsigned int) const@Base" 1.10.1 1 + (c++)"CPLString::ifind(std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.0.2 1 + (c++)"CPLString::endsWith(std::__cxx11::basic_string, std::allocator > const&) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_find_before_node(unsigned int, std::__cxx11::basic_string, std::allocator > const&, unsigned int) const@Base" 2.4.1 1 + (c++)"std::ctype::do_widen(char) const@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&) const@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&) const@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::find(std::vector > const&) const@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator >, true>*, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::clear()@Base" 2.2.0 1 + (c++)"void std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1}>(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&, std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_assign(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits > const&)::{lambda(std::__detail::_Hash_node, std::allocator >, true> const*)#1} const&)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator > const&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.4.1 1 + (c++)"std::pair, std::allocator >, true, true>, bool> std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert, std::allocator >, std::__detail::_AllocNode, std::allocator >, true> > > >(std::__cxx11::basic_string, std::allocator >&&, std::__detail::_AllocNode, std::allocator >, true> > > const&, std::integral_constant, unsigned int)@Base" 2.3.2 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_rehash(unsigned int, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_Hashtable(std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >&&)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::allocator, std::allocator > >, std::__detail::_Identity, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.2.0 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::_M_insert_unique_node(unsigned int, unsigned int, std::__detail::_Hash_node, std::allocator > const, int>, true>*, unsigned int)@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Hashtable, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits >::~_Hashtable()@Base" 2.4.1 1 + (c++)"std::_Deque_base >::_M_initialize_map(unsigned int)@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Deque_base >::~_Deque_base()@Base" 2.2.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::_Tuple_impl<0u, CPLString, CPLString>::~_Tuple_impl()@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALColorTable*)@Base" 2.3.0 1 + (c++)"std::enable_if::value, void>::type std::__shared_ptr::reset(GDALDefaultRasterAttributeTable*)@Base" 2.3.0 1 + (c++)"std::_Bvector_base >::_M_deallocate()@Base" 2.1.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr::_M_destroy()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_dispose()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::_M_get_deleter(std::type_info const&)@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr::~_Sp_counted_ptr()@Base" 2.3.0 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_dispose()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::_M_get_deleter(std::type_info const&)@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>::~_Sp_counted_ptr()@Base" 2.4.1 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_destroy()@Base" 2.2.0 1 + (c++)"std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>::_M_release()@Base" 2.2.0 1 + (c++)"CADAttrib* std::__uninitialized_copy::__uninit_copy<__gnu_cxx::__normal_iterator > >, CADAttrib*>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, CADAttrib*)@Base" 2.4.1 1 + (c++)"std::pair* std::__uninitialized_copy::__uninit_copy*>, std::pair*>(std::move_iterator*>, std::move_iterator*>, std::pair*)@Base" 2.3.2 1 + (c++)"__gnu_cxx::__normal_iterator > > std::_V2::__rotate<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::random_access_iterator_tag)@Base" 2.3.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map >, std::less, std::allocator > > > >::operator[](CPLString const&)@Base" 1.10.1 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](CPLString&&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRGeomFieldDefn* const&)@Base" 2.4.1 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::map, std::allocator > >::operator[](OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::map(std::initializer_list, std::allocator > > >, std::less const&, std::allocator, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::~map()@Base" 2.2.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.2.2 1 + (c++)"std::map, std::allocator >, std::less, std::allocator, std::allocator > > > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::map, std::allocator > >::operator[](int const&)@Base" 2.1.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.2.0 1 + (c++)"std::pair::pair(CPLString&, CPLString&)@Base" 2.2.0 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair::~pair()@Base" 1.10.1 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::~pair()@Base" 2.0.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair > >::~pair()@Base" 2.3.2 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"std::pair, std::allocator >, std::shared_ptr >::~pair()@Base" 2.4.1 1 + (c++)"void std::deque >::_M_push_back_aux(long long const&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSONObject&&)@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALColorInterp const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADClass const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADLayer const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_range_insert > > > >(__gnu_cxx::__normal_iterator > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::reverse_iterator<__gnu_cxx::__normal_iterator > > >, std::forward_iterator_tag)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRPoint const&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(CADHandle&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADHandle&&)@Base" 2.2.2 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADVector const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLString&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const (&) [2])@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char const*&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLString&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::push_back(CPLString const&)@Base" 2.2.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.2 1 + (c++)"std::vector >::vector(std::vector > const&)@Base" 2.0.2 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::~vector()@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, VRTWarpedDataset::VerticalShiftGrid const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::ArrayState&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::MemberState&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CPLJSonStreamingParser::State&&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, PCIDSK::ShapeFieldType&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, PCIDSK::eChanType const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, CADObject::ObjectType const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::emplace_back, std::allocator > >(std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > const&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, char*&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator >&>(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::~vector()@Base" 2.0.2 1 + (c++)"std::vector, std::allocator >, std::allocator, std::allocator > > >::operator=(std::vector, std::allocator >, std::allocator, std::allocator > > > const&)@Base" 2.0.2 1 + (c++)"void std::vector >::emplace_back(GDALJP2Box*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALJP2Box*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFeature*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALDataset*&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALDataset*&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.1.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRGeometry*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(OGRFieldDefn*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRFieldDefn*&&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRDataSource* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLinearRing*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(GDALRasterBand*&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBand*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GDALRasterBlock* const&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLFeatureClass* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference* const&)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRSpatialReference*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, GMLGeometryPropertyDefn* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCoordinateTransformation*&&)@Base" 2.2.3 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRCurve* const&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_erase(__gnu_cxx::__normal_iterator > >)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(OGRLayer*&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, OGRLayer*&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> >::_M_realloc_insert, std::allocator > > const*>(__gnu_cxx::__normal_iterator, std::allocator > > const**, std::vector, std::allocator > > const*, std::allocator, std::allocator > > const*> > >, std::vector, std::allocator > > const*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >*, std::allocator >*> >::_M_realloc_insert >*>(__gnu_cxx::__normal_iterator >**, std::vector >*, std::allocator >*> > >, std::vector >*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(char*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, char*&&)@Base" 2.2.2 1 + (c++)"void std::vector >::emplace_back(unsigned char*&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned char*&&)@Base" 2.2.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void* const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, void*&&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.1.0 1 + (c++)"std::vector >, std::allocator > > >::operator=(std::vector >, std::allocator > > > const&)@Base" 2.2.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >, std::allocator, std::allocator > > > >::_M_realloc_insert, std::allocator > > const&>(__gnu_cxx::__normal_iterator, std::allocator > >*, std::vector, std::allocator > >, std::allocator, std::allocator > > > > >, std::vector, std::allocator > > const&)@Base" 2.2.2 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::vector >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector >&&)@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > const&>(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::vector > const&)@Base" 2.2.2 1 + (c++)"std::vector >, std::allocator > > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr const&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::shared_ptr&&)@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::emplace_back > >(std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector >, std::allocator > > >::_M_realloc_insert > >(__gnu_cxx::__normal_iterator >*, std::vector >, std::allocator > > > >, std::unique_ptr >&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator const*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::vector(std::vector, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::~vector()@Base" 1.10.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.2.0 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::emplace_back > > >(std::pair > >&&)@Base" 2.3.2 1 + (c++)"void std::vector > >, std::allocator > > > >::_M_realloc_insert > > >(__gnu_cxx::__normal_iterator > >*, std::vector > >, std::allocator > > > > >, std::pair > >&&)@Base" 2.2.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"std::vector > >, std::allocator > > > >::~vector()@Base" 2.3.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > >::_M_realloc_insert, std::allocator >, std::shared_ptr >&>(__gnu_cxx::__normal_iterator, std::allocator >, std::shared_ptr >*, std::vector, std::allocator >, std::shared_ptr >, std::allocator, std::allocator >, std::shared_ptr > > > >, std::pair, std::allocator >, std::shared_ptr >&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::emplace_back, std::allocator >, double> >(std::pair, std::allocator >, double>&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > >::_M_realloc_insert, std::allocator >, double> >(__gnu_cxx::__normal_iterator, std::allocator >, double>*, std::vector, std::allocator >, double>, std::allocator, std::allocator >, double> > > >, std::pair, std::allocator >, double>&&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, bool>, std::allocator, bool> > >::_M_realloc_insert, bool> >(__gnu_cxx::__normal_iterator, bool>*, std::vector, bool>, std::allocator, bool> > > >, std::pair, bool>&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert const&>(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&)@Base" 2.2.2 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 1.10.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"std::vector, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > >, std::allocator, std::allocator >, long, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > > > > >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.2.2 1 + (c++)"std::vector, std::allocator > >::_M_default_append(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator > >::resize(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::pair&&)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_assign_aux<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_range_insert<__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > > >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, __gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::forward_iterator_tag)@Base" 2.2.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair&&)@Base" 2.3.0 1 + (c++)"void std::vector, std::allocator > >::emplace_back >(std::tuple&&)@Base" 2.4.1 1 + (c++)"void std::vector, std::allocator > >::_M_realloc_insert >(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::tuple&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_insert_aux(std::_Bit_iterator, bool)@Base" 2.1.0 1 + (c++)"std::vector >::_M_fill_insert(std::_Bit_iterator, unsigned int, bool)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::vector(std::initializer_list, std::allocator const&)@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"std::vector >::~vector()@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(double const&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&)@Base" 2.4.1 1 + (c++)"void std::vector >::emplace_back(double&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_assign_aux(double const*, double const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, double const&)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_range_insert<__gnu_cxx::__normal_iterator > > >(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::forward_iterator_tag)@Base" 2.3.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, double&&)@Base" 2.2.2 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 1.10.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.4.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, float const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned char&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.3 1 + (c++)"void std::vector >::emplace_back(int&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_assign_aux(int const*, int const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, int const&)@Base" 1.10.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, int&&)@Base" 2.2.2 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::emplace_back(unsigned int&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_fill_assign(unsigned int, unsigned int const&)@Base" 2.3.2 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned int const&)@Base" 2.0.2 1 + (c++)"std::vector >::_M_insert_rval(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.4.1 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned int&&)@Base" 2.2.2 1 + (c++)"std::vector >::insert(__gnu_cxx::__normal_iterator > >, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::vector >::resize(unsigned int)@Base" 2.3.0 1 + (c++)"std::vector >::push_back(unsigned int const&)@Base" 2.3.0 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, short const&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(unsigned short&&)@Base" 2.3.0 1 + (c++)"std::vector >::_M_fill_insert(__gnu_cxx::__normal_iterator > >, unsigned int, unsigned short const&)@Base" 1.10.1 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned short&&)@Base" 2.3.0 1 + (c++)"void std::vector >::emplace_back(long long&&)@Base" 2.2.0 1 + (c++)"void std::vector >::_M_assign_aux(long long const*, long long const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, long long&&)@Base" 2.2.2 1 + (c++)"std::vector >::reserve(unsigned int)@Base" 2.4.1 1 + (c++)"std::vector >::operator=(std::vector > const&)@Base" 2.2.0 1 + (c++)"void std::vector >::emplace_back(unsigned long long&&)@Base" 2.2.0 1 + (c++)"std::vector >::_M_default_append(unsigned int)@Base" 2.3.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long const&)@Base" 2.2.2 1 + (c++)"void std::vector >::_M_realloc_insert(__gnu_cxx::__normal_iterator > >, unsigned long long&&)@Base" 2.2.2 1 + (c++)"std::__cxx11::_List_base >::_M_clear()@Base" 2.2.0 1 + (c++)"std::__cxx11::_List_base, std::allocator >, std::allocator, std::allocator > > >::_M_clear()@Base" 2.0.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char const*, char const*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"void std::__cxx11::basic_string, std::allocator >::_M_construct(char*, char*, std::forward_iterator_tag)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::sort()@Base" 2.0.2 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::merge(std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >&&)@Base" 2.2.0 1 + (c++)"std::__cxx11::list, std::allocator >, std::allocator, std::allocator > > >::unique()@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRwkbGeometryType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, geokey_t const&)@Base" 2.3.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.3.1 1 + (c++)"std::_Rb_tree_iterator std::_Rb_tree, std::less, std::allocator >::_M_insert_, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, CPLString const&, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::equal_range(CPLString const&)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(CPLString&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Reuse_or_alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::operator=(std::_Rb_tree, std::less, std::allocator > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase_aux(std::_Rb_tree_const_iterator >)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::equal_range(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.4.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(CPLString const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node > > >* std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_copy > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node>(std::_Rb_tree_node > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > > std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > > >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > > > std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(CPLString const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, MVTTileLayerFeature::GeomType const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, CADTables::TableType const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, std::allocator > >, bool> std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_insert_unique, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::_Identity, std::allocator > >, std::less, std::allocator > >, std::allocator, std::allocator > > >::_M_erase(std::_Rb_tree_node, std::allocator > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, VSIFilesystemHandler*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, VSIFilesystemHandler*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, VSIFilesystemHandler*>, std::_Select1st, std::allocator > const, VSIFilesystemHandler*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, VSIFilesystemHandler*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, VSIFilesystemHandler*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*>, std::_Select1st, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::map, std::allocator >, std::__cxx11::basic_string, std::allocator >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >*> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator >&&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator >&&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, double> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, double>, std::_Select1st, std::allocator > const, double> >, std::less, std::allocator > >, std::allocator, std::allocator > const, double> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, double> >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::erase(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair, std::allocator > const, long> >, bool> std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_emplace_unique, std::allocator >, long> >(std::pair, std::allocator >, long>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_node, std::allocator > const, long> >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_copy, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node>(std::_Rb_tree_node, std::allocator > const, long> > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long>, std::_Select1st, std::allocator > const, long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > const, long long> > std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_emplace_hint_unique, std::allocator > const&>, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::piecewise_construct_t const&, std::tuple, std::allocator > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, long long> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, long long>, std::_Select1st, std::allocator > const, long long> >, std::less, std::allocator > >, std::allocator, std::allocator > const, long long> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, long long> >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(OGRFeature* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, OGRFeature* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(GDALDataset* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, GDALDataset* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(GMLFeatureClass* const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRMutexedLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRGeomFieldDefn* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(OGRLayer* const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRLayer* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, OGRSpatialReference const* const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase_aux(std::_Rb_tree_const_iterator const, char*> >)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, char*> > std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, char*> >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, char*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::find(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, char*>, std::_Select1st const, char*> >, std::less >, std::allocator const, char*> > >::_M_erase(std::_Rb_tree_node const, char*> >*)@Base" 1.10.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator const, std::vector > > > std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector > > >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector > > >, std::pair const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector > >, std::_Select1st const, std::vector > > >, std::less >, std::allocator const, std::vector > > > >::_M_erase(std::_Rb_tree_node const, std::vector > > >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::find(std::pair const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, CPLString> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, CPLString>, std::_Select1st const, CPLString> >, std::less >, std::allocator const, CPLString> > >::_M_erase(std::_Rb_tree_node const, CPLString> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, GDALDataset*> >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, GDALDataset*>, std::_Select1st const, GDALDataset*> >, std::less >, std::allocator const, GDALDataset*> > >::_M_erase(std::_Rb_tree_node const, GDALDataset*> >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, OGRCoordinateTransformation*> >, std::pair const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::pair const, OGRCoordinateTransformation*>, std::_Select1st const, OGRCoordinateTransformation*> >, std::less >, std::allocator const, OGRCoordinateTransformation*> > >::_M_erase(std::_Rb_tree_node const, OGRCoordinateTransformation*> >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator const, std::vector, bool>, std::allocator, bool> > > > > std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_emplace_hint_unique const&>, std::tuple<> >(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::piecewise_construct_t const&, std::tuple const&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, std::vector, bool>, std::allocator, bool> > > > >, std::pair const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >* std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_copy, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::pair const, std::vector, bool>, std::allocator, bool> > > >, std::_Select1st const, std::vector, bool>, std::allocator, bool> > > > >, std::less >, std::allocator const, std::vector, bool>, std::allocator, bool> > > > > >::_M_erase(std::_Rb_tree_node const, std::vector, bool>, std::allocator, bool> > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator const, int> > std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_emplace_hint_unique&&>, std::tuple<> >(std::_Rb_tree_const_iterator const, int> >, std::piecewise_construct_t const&, std::tuple&&>&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_unique_pos(std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator const, int> >, std::pair const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::pair const, int>, std::_Select1st const, int> >, std::less >, std::allocator const, int> > >::_M_erase(std::_Rb_tree_node const, int> >*)@Base" 2.0.2 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique const&>(std::pair const&)@Base" 2.3.0 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_insert_unique >(std::pair&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_copy, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_Alloc_node&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::pair, std::_Identity >, std::less >, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_lower_bound(std::_Rb_tree_node > const, std::pair > >*, std::_Rb_tree_node_base*, std::vector > const&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree_iterator > const, std::pair > > std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_emplace_hint_unique > const&>, std::tuple<> >(std::_Rb_tree_const_iterator > const, std::pair > >, std::piecewise_construct_t const&, std::tuple > const&>&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_unique_pos(std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > const, std::pair > >, std::vector > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree >, std::pair > const, std::pair >, std::_Select1st > const, std::pair > >, std::less > >, std::allocator > const, std::pair > > >::_M_erase(std::_Rb_tree_node > const, std::pair > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, char const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::allocator > > >, std::_Select1st, std::allocator > > > >, std::less, std::allocator, std::allocator > > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_equal >(std::pair&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator, std::allocator > > > std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator, std::allocator > > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, int const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(int const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, int const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree_node >* std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node>(std::_Rb_tree_node > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_Reuse_or_alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::operator=(std::_Rb_tree, std::_Select1st >, std::less, std::allocator > > const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, int const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(int&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > > >, unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::erase(unsigned int const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree > >, std::_Select1st > > >, std::less, std::allocator > > > >::_M_erase(std::_Rb_tree_node > > >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, unsigned int const&)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.0.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long const&)@Base" 1.11.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.11.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long const&)@Base" 2.3.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.3.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(unsigned short const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 1.11.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_iterator > > std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator > >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator > >, long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node >*)@Base" 2.4.1 1 + (c++)"std::pair >, bool> std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_unique >(std::pair&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.3.2 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 1.10.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 1.10.1 1 + (c++)"std::_Rb_tree_iterator > std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_emplace_hint_unique, std::tuple<> >(std::_Rb_tree_const_iterator >, std::piecewise_construct_t const&, std::tuple&&, std::tuple<>&&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator >, long long const&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long const&)@Base" 2.2.0 1 + (c++)"std::pair, bool> std::_Rb_tree, std::less, std::allocator >::_M_insert_unique(long long&&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_get_insert_unique_pos(long long const&)@Base" 2.4.1 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::erase(long long const&)@Base" 2.1.0 1 + (c++)"std::_Rb_tree_node* std::_Rb_tree, std::less, std::allocator >::_M_copy, std::less, std::allocator >::_Alloc_node>(std::_Rb_tree_node const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::less, std::allocator >::_Alloc_node&)@Base" 2.2.0 1 + (c++)"std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*)@Base" 2.1.0 1 + (c++)"std::__detail::_Hash_node, std::allocator >, true>* std::__detail::_Hashtable_alloc, std::allocator >, true> > >::_M_allocate_node, std::allocator > const&>(std::__cxx11::basic_string, std::allocator > const&)@Base" 2.3.2 1 + (c++)"std::__detail::_Map_base, std::allocator >, std::pair, std::allocator > const, int>, std::allocator, std::allocator > const, int> >, std::__detail::_Select1st, std::equal_to, std::allocator > >, std::hash, std::allocator > >, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits, true>::operator[](std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.1 1 + (c++)"bool std::operator< (std::pair const&, std::pair const&)@Base" 2.3.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, char const*)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator >&&, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.2.0 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator >&&)@Base" 2.4.1 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(char const*, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, char const*)@Base" 2.0.2 1 + (c++)"std::__cxx11::basic_string, std::allocator > std::operator+, std::allocator >(std::__cxx11::basic_string, std::allocator > const&, std::__cxx11::basic_string, std::allocator > const&)@Base" 2.0.2 1 + (c++)"typeinfo for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo for CADArc@Base" 2.3.0 1 + (c++)"typeinfo for CADRay@Base" 2.3.0 1 + (c++)"typeinfo for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo for CADFile@Base" 2.2.0 1 + (c++)"typeinfo for CADLine@Base" 2.3.0 1 + (c++)"typeinfo for CADText@Base" 2.3.0 1 + (c++)"typeinfo for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo for CADImage@Base" 2.3.0 1 + (c++)"typeinfo for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo for CADMText@Base" 2.3.0 1 + (c++)"typeinfo for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo for CADObject@Base" 2.3.0 1 + (c++)"typeinfo for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo for CPLString@Base" 2.1.0 1 + (c++)"typeinfo for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for CADEllipse@Base" 2.3.0 1 + (c++)"typeinfo name for CADPoint3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADXRecord@Base" 2.2.0 1 + (c++)"typeinfo name for GDALDriver@Base" 1.10.1 1 + (c++)"typeinfo name for GNMNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for IGMLReader@Base" 1.10.1 1 + (c++)"typeinfo name for MEMDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeature@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSurface@Base" 1.10.1 1 + (c++)"typeinfo name for RawDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VRTDataset@Base" 1.10.1 1 + (c++)"typeinfo name for CADGeometry@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometry@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSFDriver@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStylePen@Base" 1.10.1 1 + (c++)"typeinfo name for OGRTriangle@Base" 2.2.0 1 + (c++)"typeinfo name for OGRAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleTool@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionary@Base" 2.2.0 1 + (c++)"typeinfo name for CADLWPolyline@Base" 2.3.0 1 + (c++)"typeinfo name for CADPolyline3D@Base" 2.3.0 1 + (c++)"typeinfo name for MEMRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRDataSource@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLineString@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLinearRing@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPoint@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleBrush@Base" 1.10.1 1 + (c++)"typeinfo name for OGRStyleLabel@Base" 1.10.1 1 + (c++)"typeinfo name for RawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamDataset@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpKernel@Base" 1.10.1 1 + (c++)"typeinfo name for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"typeinfo name for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAsyncReader@Base" 1.10.1 1 + (c++)"typeinfo name for GDALMajorObject@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterBlock@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiSurface@Base" 2.0.2 1 + (c++)"typeinfo name for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"typeinfo name for VRTSimpleSource@Base" 1.11.0 1 + (c++)"typeinfo name for CADPolylinePFace@Base" 2.3.0 1 + (c++)"typeinfo name for GDALProxyDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"typeinfo name for OGREditableLayer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPointIterator@Base" 2.0.2 1 + (c++)"typeinfo name for VRTComplexSource@Base" 1.11.0 1 + (c++)"typeinfo name for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"typeinfo name for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"typeinfo name for GDALDriverManager@Base" 1.10.1 1 + (c++)"typeinfo name for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALWarpOperation@Base" 1.10.1 1 + (c++)"typeinfo name for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCircularString@Base" 2.0.2 1 + (c++)"typeinfo name for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"typeinfo name for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMultiLineString@Base" 1.10.1 1 + (c++)"typeinfo name for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"typeinfo name for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"typeinfo name for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for IOGRGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for OGRSpatialReference@Base" 1.10.1 1 + (c++)"typeinfo name for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"typeinfo name for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"typeinfo name for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"typeinfo name for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for VSIFilesystemHandler@Base" 1.10.1 1 + (c++)"typeinfo name for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"typeinfo name for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"typeinfo name for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"typeinfo name for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"typeinfo name for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"typeinfo name for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for IOGRConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"typeinfo name for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"typeinfo name for OGRCoordinateTransformation@Base" 1.10.1 1 + (c++)"typeinfo name for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"typeinfo name for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"typeinfo name for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"typeinfo name for CADArc@Base" 2.3.0 1 + (c++)"typeinfo name for CADRay@Base" 2.3.0 1 + (c++)"typeinfo name for CPLErr@Base" 2.1.0 1 + (c++)"typeinfo name for VSIDIR@Base" 2.4.1 1 + (c++)"typeinfo name for CADFile@Base" 2.2.0 1 + (c++)"typeinfo name for CADLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADText@Base" 2.3.0 1 + (c++)"typeinfo name for GNMRule@Base" 2.2.0 1 + (c++)"typeinfo name for CADHatch@Base" 2.3.0 1 + (c++)"typeinfo name for CADImage@Base" 2.3.0 1 + (c++)"typeinfo name for CADMLine@Base" 2.3.0 1 + (c++)"typeinfo name for CADMText@Base" 2.3.0 1 + (c++)"typeinfo name for CADSolid@Base" 2.3.0 1 + (c++)"typeinfo name for CADXLine@Base" 2.3.0 1 + (c++)"typeinfo name for GNMGraph@Base" 2.2.0 1 + (c++)"typeinfo name for OGRCurve@Base" 1.10.1 1 + (c++)"typeinfo name for OGRLayer@Base" 1.10.1 1 + (c++)"typeinfo name for OGRPoint@Base" 1.10.1 1 + (c++)"typeinfo name for CADAttdef@Base" 2.3.0 1 + (c++)"typeinfo name for CADAttrib@Base" 2.3.0 1 + (c++)"typeinfo name for CADCircle@Base" 2.3.0 1 + (c++)"typeinfo name for CADFace3D@Base" 2.3.0 1 + (c++)"typeinfo name for CADFileIO@Base" 2.3.0 1 + (c++)"typeinfo name for CADObject@Base" 2.3.0 1 + (c++)"typeinfo name for CADSpline@Base" 2.3.0 1 + (c++)"typeinfo name for CPLString@Base" 2.1.0 1 + (c++)"typeinfo name for VRTSource@Base" 1.11.0 1 + (c++)"typeinfo name for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"typeinfo name for std::__cxx11::basic_string, std::allocator >@Base" 2.1.0 1 + (c++)"typeinfo name for std::runtime_error*@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Mutex_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"typeinfo name for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"typeinfo name for std::_Sp_counted_base<(__gnu_cxx::_Lock_policy)2>@Base" 2.2.0 1 + (c++)"typeinfo name for std::_Sp_make_shared_tag@Base" 2.4.1 1 + (c++)"vtable for CADEllipse@Base" 2.3.0 1 + (c++)"vtable for CADPoint3D@Base" 2.3.0 1 + (c++)"vtable for CADXRecord@Base" 2.2.0 1 + (c++)"vtable for GDALDriver@Base" 1.10.1 1 + (c++)"vtable for GNMNetwork@Base" 2.2.0 1 + (c++)"vtable for IGMLReader@Base" 1.10.1 1 + (c++)"vtable for MEMDataset@Base" 1.10.1 1 + (c++)"vtable for OGRFeature@Base" 1.10.1 1 + (c++)"vtable for OGRPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRSurface@Base" 1.10.1 1 + (c++)"vtable for RawDataset@Base" 1.10.1 1 + (c++)"vtable for VRTDataset@Base" 1.10.1 1 + (c++)"vtable for CADGeometry@Base" 2.3.0 1 + (c++)"vtable for GDALDataset@Base" 1.10.1 1 + (c++)"vtable for OGRGeometry@Base" 1.10.1 1 + (c++)"vtable for OGRSFDriver@Base" 1.10.1 1 + (c++)"vtable for OGRStylePen@Base" 1.10.1 1 + (c++)"vtable for OGRTriangle@Base" 2.2.0 1 + (c++)"vtable for OGRAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRStyleTool@Base" 1.10.1 1 + (c++)"vtable for CADDictionary@Base" 2.2.0 1 + (c++)"vtable for CADLWPolyline@Base" 2.3.0 1 + (c++)"vtable for CADPolyline3D@Base" 2.3.0 1 + (c++)"vtable for MEMRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRDataSource@Base" 1.10.1 1 + (c++)"vtable for OGRLineString@Base" 1.10.1 1 + (c++)"vtable for OGRLinearRing@Base" 1.10.1 1 + (c++)"vtable for OGRMultiCurve@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPoint@Base" 1.10.1 1 + (c++)"vtable for OGRStyleBrush@Base" 1.10.1 1 + (c++)"vtable for OGRStyleLabel@Base" 1.10.1 1 + (c++)"vtable for RawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALPamDataset@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpKernel@Base" 1.10.1 1 + (c++)"vtable for OGRFeatureDefn@Base" 1.10.1 1 + (c++)"vtable for OGRSimpleCurve@Base" 2.0.2 1 + (c++)"vtable for OGRStyleSymbol@Base" 1.10.1 1 + (c++)"vtable for GDALAsyncReader@Base" 1.10.1 1 + (c++)"vtable for GDALMajorObject@Base" 1.10.1 1 + (c++)"vtable for GDALRasterBlock@Base" 1.10.1 1 + (c++)"vtable for OGRCurvePolygon@Base" 2.0.2 1 + (c++)"vtable for OGRMultiPolygon@Base" 1.10.1 1 + (c++)"vtable for OGRMultiSurface@Base" 2.0.2 1 + (c++)"vtable for OGRMutexedLayer@Base" 1.11.0 1 + (c++)"vtable for VRTSimpleSource@Base" 1.11.0 1 + (c++)"vtable for CADPolylinePFace@Base" 2.3.0 1 + (c++)"vtable for GDALProxyDataset@Base" 1.10.1 1 + (c++)"vtable for OGRCompoundCurve@Base" 2.0.2 1 + (c++)"vtable for OGREditableLayer@Base" 2.1.0 1 + (c++)"vtable for OGRGeomFieldDefn@Base" 1.11.0 1 + (c++)"vtable for OGRPointIterator@Base" 2.0.2 1 + (c++)"vtable for VRTComplexSource@Base" 1.11.0 1 + (c++)"vtable for VRTRawRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedDataset@Base" 1.10.1 1 + (c++)"vtable for VSIVirtualHandle@Base" 1.10.1 1 + (c++)"vtable for GDALDriverManager@Base" 1.10.1 1 + (c++)"vtable for GDALPamRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALWarpOperation@Base" 1.10.1 1 + (c++)"vtable for GNMGenericNetwork@Base" 2.2.0 1 + (c++)"vtable for OGRCircularString@Base" 2.0.2 1 + (c++)"vtable for OGRLayerAttrIndex@Base" 1.10.1 1 + (c++)"vtable for OGRLayerDecorator@Base" 2.0.2 1 + (c++)"vtable for GDALNoDataMaskBand@Base" 1.10.1 1 + (c++)"vtable for OGRMultiLineString@Base" 1.10.1 1 + (c++)"vtable for CADDictionaryRecord@Base" 2.4.1 1 + (c++)"vtable for GDALMDReaderManager@Base" 2.0.2 1 + (c++)"vtable for GDALProxyRasterBand@Base" 1.10.1 1 + (c++)"vtable for OGRSpatialReference@Base" 1.10.1 1 + (c++)"vtable for VRTWarpedRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALAllValidMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALGeorefPamDataset@Base" 1.11.0 1 + (c++)"vtable for GDALProxyPoolDataset@Base" 1.10.1 1 + (c++)"vtable for OGRMutexedDataSource@Base" 1.11.0 1 + (c++)"vtable for OGRPolyhedralSurface@Base" 2.2.0 1 + (c++)"vtable for VRTDerivedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VRTSourcedRasterBand@Base" 1.10.1 1 + (c++)"vtable for VSIFilesystemHandler@Base" 2.4.1 1 + (c++)"vtable for OGRGeometryCollection@Base" 1.10.1 1 + (c++)"vtable for CPLJSonStreamingParser@Base" 2.3.0 1 + (c++)"vtable for GDALJP2AbstractDataset@Base" 1.11.0 1 + (c++)"vtable for OGRTriangulatedSurface@Base" 2.2.0 1 + (c++)"vtable for GDALProxyPoolRasterBand@Base" 1.10.1 1 + (c++)"vtable for GDALNoDataValuesMaskBand@Base" 1.10.1 1 + (c++)"vtable for GDALRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for IOGRTransactionBehaviour@Base" 2.0.2 1 + (c++)"vtable for OGRDefaultGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALAbstractBandBlockCache@Base" 2.1.0 1 + (c++)"vtable for IOGREditableLayerSynchronizer@Base" 2.1.0 1 + (c++)"vtable for OGRDefaultConstGeometryVisitor@Base" 2.3.0 1 + (c++)"vtable for GDALDefaultRasterAttributeTable@Base" 1.11.0 1 + (c++)"vtable for CADArc@Base" 2.3.0 1 + (c++)"vtable for CADRay@Base" 2.3.0 1 + (c++)"vtable for VSIDIR@Base" 2.4.1 1 + (c++)"vtable for CADFile@Base" 2.2.0 1 + (c++)"vtable for CADLine@Base" 2.3.0 1 + (c++)"vtable for CADText@Base" 2.3.0 1 + (c++)"vtable for GNMRule@Base" 2.2.0 1 + (c++)"vtable for CADHatch@Base" 2.3.0 1 + (c++)"vtable for CADImage@Base" 2.3.0 1 + (c++)"vtable for CADMLine@Base" 2.3.0 1 + (c++)"vtable for CADMText@Base" 2.3.0 1 + (c++)"vtable for CADSolid@Base" 2.3.0 1 + (c++)"vtable for CADXLine@Base" 2.3.0 1 + (c++)"vtable for GNMGraph@Base" 2.2.0 1 + (c++)"vtable for OGRCurve@Base" 1.10.1 1 + (c++)"vtable for OGRLayer@Base" 1.10.1 1 + (c++)"vtable for OGRPoint@Base" 1.10.1 1 + (c++)"vtable for CADAttdef@Base" 2.3.0 1 + (c++)"vtable for CADAttrib@Base" 2.3.0 1 + (c++)"vtable for CADCircle@Base" 2.3.0 1 + (c++)"vtable for CADFace3D@Base" 2.3.0 1 + (c++)"vtable for CADFileIO@Base" 2.3.0 1 + (c++)"vtable for CADSpline@Base" 2.3.0 1 + (c++)"vtable for VRTSource@Base" 1.11.0 1 + (c++)"vtable for OGRFeature::FieldNotFoundException@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.4.1 1 + (c++)"vtable for std::_Sp_counted_ptr@Base" 2.3.0 1 + (c++)"vtable for std::_Sp_counted_ptr, std::allocator >*, (__gnu_cxx::_Lock_policy)2>@Base" 2.4.1 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"VRTComplexSource::RasterIOInternal(int, int, int, int, void*, int, int, GDALDataType, long long, long long, GDALRasterIOExtraArg*, GDALDataType)::bHasWarned@Base" 2.2.3 1 + (c++)"std::_Sp_make_shared_tag::_S_ti()::__tag@Base" 2.4.1 1 diff --git a/gdal/debian/patches/ecw-plugin b/gdal/debian/patches/ecw-plugin new file mode 100644 index 000000000000..19b196b1f96a --- /dev/null +++ b/gdal/debian/patches/ecw-plugin @@ -0,0 +1,4987 @@ +Description: Add support for building the libgdal-ecw plugin. +Author: Francesco Paolo Lovergine +Last-Update: 2013-10-04 +Forwarded: not-needed + +--- a/frmts/ecw/GNUmakefile ++++ b/frmts/ecw/GNUmakefile +@@ -21,3 +21,12 @@ plugin: $(PLUGIN_SO) + $(PLUGIN_SO): $(OBJ) + $(LD_SHARED) $(LNK_FLAGS) $(OBJ) $(CONFIG_LIBS) $(EXTRA_LIBS) \ + -o $(PLUGIN_SO) ++ ++dist: ++ cp -r pkg libgdal-ecw-$(GDAL_VER) ++ rm -rf libgdal-ecw-$(GDAL_VER)/.svn ++ cp *.cpp libgdal-ecw-$(GDAL_VER) ++ cp *.h libgdal-ecw-$(GDAL_VER) ++ tar czvf libgdal-ecw-$(GDAL_VER).tar.gz ./libgdal-ecw-$(GDAL_VER) ++ rm -rf libgdal-ecw-$(GDAL_VER) ++ +--- /dev/null ++++ b/frmts/ecw/pkg/Makefile.in +@@ -0,0 +1,36 @@ ++CC = @CC@ ++CXX = @CXX@ ++LD = @CXX@ ++ ++CPPFLAGS = -DFRMT_ecw @GDAL_INC@ @ECW_INCLUDE@ @CPPFLAGS@ ++CXXFLAGS = -DFRMT_ecw @CXX_WFLAGS@ @ECW_INCLUDE@ @CXX_PIC@ ++ ++RANLIB = @RANLIB@ ++SO_EXT = @SO_EXT@ ++LD_SHARED = @LD_SHARED@ ++ ++LIBS = @LIBS@ ++ ++AUTOLOAD_DIR = @AUTOLOAD_DIR@ ++ ++GLIBNAME = gdal_ECW_JP2ECW.so ++ ++default: $(GLIBNAME) ++ ++install: default ++ install -d $(AUTOLOAD_DIR) ++ cp $(GLIBNAME) $(AUTOLOAD_DIR) ++ ++clean: ++ rm -f $(GLIBNAME) *.o ++ ++distclean: clean ++ rm -fr Makefile config.status config.log autom*.cache ++ ++ ++$(GLIBNAME): ecwcreatecopy.o ecwdataset.o jp2userbox.o ++ $(LD_SHARED) ecwcreatecopy.o ecwdataset.o jp2userbox.o $(LIBS) -o $(GLIBNAME) ++ ++%.o: %.cpp ++ $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $< ++ +--- /dev/null ++++ b/frmts/ecw/pkg/README +@@ -0,0 +1,30 @@ ++ Standalone ECW 3.3 Drivers for GDAL ++ =================================== ++ ++This package contains standalone drivers for ECW raster files that ++can be built after GDAL has been built and installed as an "autoload" ++driver. ++ ++The purpose of this code is allowing a separate building of the ECW ++driver which is problematic for implied EULA. Note that in order to use ++GDAL (and GDAL-based third parties product) along with Ermapper ECW SDK ++you need to read, understand and approve the Ermapper EULA which can be ++retrieved on the Ermapper site. ++ ++To build this driver it is necessary for it to find GDAL and ECW support ++files. Typically the configure and build process would look something ++like: ++ ++./configure --with-gdal=/usr/local/bin/gdal-config --with-ecw=/usr/local/ecw3.3 ++make ++sudo make install ++ ++The ecw3.3 directory will contain the required includes and libraries as ++compiled starting from the source Ermapper SDK. ++ ++See also: ++ ++ http://www.gdal.org/ ++ http://www.ermapper.com/ ++ http://ermapper.com/Downloads.aspx?v=315 ++ +--- /dev/null ++++ b/frmts/ecw/pkg/aclocal.m4 +@@ -0,0 +1,202 @@ ++AC_DEFUN(AC_COMPILER_LOCALHACK, ++[ ++ AC_MSG_CHECKING([if local/include already standard]) ++ ++ rm -f comp.out ++ echo 'int main() { int i = 1; if( *((unsigned char *) &i) == 0 ) printf( "BIGENDIAN"); return 0; }' >> conftest.c ++ ${CC} $CPPFLAGS $EXTRA_INCLUDES -o conftest conftest.c 2> comp.out ++ COMP_CHECK=`grep "system directory" comp.out | grep /usr/local/include` ++ if test -z "$COMP_CHECK" ; then ++ AC_MSG_RESULT([no, everything is ok]) ++ else ++ AC_MSG_RESULT([yes, stripping extras]) ++ CXXFLAGS=`echo "$CXXFLAGS " | sed "s/-I\/usr\/local\/include //"` ++ CFLAGS=`echo "$CFLAGS " | sed "s/-I\/usr\/local\/include //"` ++ EXTRA_INCLUDES=`echo "$EXTRA_INCLUDES " | sed "s/-I\/usr\/local\/include //"` ++ fi ++ rm -f comp.out ++]) ++ ++AC_DEFUN(AC_COMPILER_WFLAGS, ++[ ++ # Remove -g from compile flags, we will add via CFG variable if ++ # we need it. ++ CXXFLAGS=`echo "$CXXFLAGS " | sed "s/-g //"` ++ CFLAGS=`echo "$CFLAGS " | sed "s/-g //"` ++ ++ # check for GNU compiler, and use -Wall ++ if test "$GCC" = "yes"; then ++ C_WFLAGS="-Wall" ++ AC_DEFINE(USE_GNUCC, 1, [Define to 1, if you have GNU C ++ compiler]) ++ fi ++ if test "$GXX" = "yes"; then ++ CXX_WFLAGS="-Wall" ++ AC_DEFINE(USE_GNUCC, 1, [Define to 1, if you have GNU C ++ compiler]) ++ fi ++ AC_SUBST(CXX_WFLAGS,$CXX_WFLAGS) ++ AC_SUBST(C_WFLAGS,$C_WFLAGS) ++]) ++ ++AC_DEFUN(AC_COMPILER_PIC, ++[ ++ echo 'void f(){}' > conftest.c ++ if test -z "`${CC-cc} -fPIC -c conftest.c 2>&1`"; then ++ C_PIC=-fPIC ++ else ++ C_PIC= ++ fi ++ if test -z "`${CXX-g++} -fPIC -c conftest.c 2>&1`"; then ++ CXX_PIC=-fPIC ++ else ++ CXX_PIC= ++ fi ++ rm -f conftest* ++ ++ AC_SUBST(CXX_PIC,$CXX_PIC) ++ AC_SUBST(C_PIC,$C_PIC) ++]) ++ ++dnl ++dnl Try to find something to link shared libraries with. Use "c++ -shared" ++dnl in preference to "ld -shared" because it will link in required c++ ++dnl run time support for us. ++dnl ++AC_DEFUN(AC_LD_SHARED, ++[ ++ echo 'void g(); int main(){ g(); return 0; }' > conftest1.c ++ ++ echo '#include ' > conftest2.c ++ echo 'void g(); void g(){printf("");}' >> conftest2.c ++ ${CC} ${C_PIC} -c conftest2.c ++ ++ SO_EXT="so" ++ export SO_EXT ++ LD_SHARED="/bin/true" ++ if test ! -z "`uname -a | grep IRIX`" ; then ++ IRIX_ALL=-all ++ else ++ IRIX_ALL= ++ fi ++ ++ AC_ARG_WITH(ld-shared,[ --with-ld-shared=cmd provide shared library link],,) ++ ++ if test "$with_ld_shared" != "" ; then ++ if test "$with_ld_shared" = "no" ; then ++ echo "user disabled shared library support." ++ else ++ echo "using user supplied .so link command ... $with_ld_shared" ++ fi ++ LD_SHARED="$with_ld_shared" ++ fi ++ ++ dnl Check For Cygwin case. Actually verify that the produced DLL works. ++ ++ if test ! -z "`uname -a | grep CYGWIN`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`gcc -shared conftest2.o -o libconftest.dll`" ; then ++ if test -z "`${CC} conftest1.c -L./ -lconftest -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for Cygwin gcc -shared ... yes" ++ LD_SHARED="c++ -shared" ++ SO_EXT="dll" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ dnl Test special MacOS (Darwin) case. ++ ++ if test ! -z "`uname | grep Darwin`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -dynamiclib conftest2.o -o libconftest.so 2>&1`" ; then ++ ${CC} -c conftest1.c ++ if test -z "`${CXX} conftest1.o libconftest.so -o conftest1 2>&1`"; then ++ DYLD_LIBRARY_PATH_OLD="$DYLD_LIBRARY_PATH" ++ if test -z "$DYLD_LIBRARY_PATH" ; then ++ DYLD_LIBRARY_PATH="`pwd`" ++ else ++ DYLD_LIBRARY_PATH="`pwd`:$DYLD_LIBRARY_PATH" ++ fi ++ export DYLD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -dynamiclib ... yes" ++ LD_SHARED="${CXX} -dynamiclib" ++ SO_EXT=dylib ++ fi ++ DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH_OLD" ++ fi ++ rm -f conftest1.o ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -shared $IRIX_ALL conftest2.o -o libconftest.so 2>&1|grep -v WARNING`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -shared ... yes" ++ LD_SHARED="${CXX} -shared $IRIX_ALL" ++ else ++ echo "checking for ${CXX} -shared ... no(3)" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ else ++ echo "checking for ${CXX} -shared ... no(2)" ++ fi ++ else ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ${CXX} -shared ... no(1)" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`ld -shared conftest2.o -o libconftest.so 2>&1`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ld -shared ... yes" ++ LD_SHARED="ld -shared" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ld -shared ... no" ++ if test ! -x /bin/true ; then ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ if test "$LD_SHARED" = "no" ; then ++ if test -x /bin/true ; then ++ LD_SHARED=/bin/true ++ else ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ ++ rm -f conftest* libconftest* ++ ++ AC_SUBST(LD_SHARED,$LD_SHARED) ++ AC_SUBST(SO_EXT,$SO_EXT) ++]) +--- /dev/null ++++ b/frmts/ecw/pkg/configure +@@ -0,0 +1,4498 @@ ++#! /bin/sh ++# Guess values for system-dependent variables and create Makefiles. ++# Generated by GNU Autoconf 2.61. ++# ++# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, ++# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++# This configure script is free software; the Free Software Foundation ++# gives unlimited permission to copy, distribute and modify it. ++## --------------------- ## ++## M4sh Initialization. ## ++## --------------------- ## ++ ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++ ++ ++# PATH needs CR ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits ++ ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: ++ fi ++ rm -f conf$$.sh ++fi ++ ++# Support unset when possible. ++if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then ++ as_unset=unset ++else ++ as_unset=false ++fi ++ ++ ++# IFS ++# We need space, tab and new line, in precisely that order. Quoting is ++# there to prevent editors from complaining about space-tab. ++# (If _AS_PATH_WALK were called with IFS unset, it would disable word ++# splitting by setting IFS to empty value.) ++as_nl=' ++' ++IFS=" "" $as_nl" ++ ++# Find who we are. Look in the path if we contain no directory separator. ++case $0 in ++ *[\\/]* ) as_myself=$0 ;; ++ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++# We did not find ourselves, most probably we were run as `sh COMMAND' ++# in which case we are not to be found in the path. ++if test "x$as_myself" = x; then ++ as_myself=$0 ++fi ++if test ! -f "$as_myself"; then ++ echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ { (exit 1); exit 1; } ++fi ++ ++# Work around bugs in pre-3.0 UWIN ksh. ++for as_var in ENV MAIL MAILPATH ++do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++done ++PS1='$ ' ++PS2='> ' ++PS4='+ ' ++ ++# NLS nuisances. ++for as_var in \ ++ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ++ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ++ LC_TELEPHONE LC_TIME ++do ++ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ++ eval $as_var=C; export $as_var ++ else ++ ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ fi ++done ++ ++# Required to use basename. ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ++ as_basename=basename ++else ++ as_basename=false ++fi ++ ++ ++# Name of the executable. ++as_me=`$as_basename -- "$0" || ++$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ ++# CDPATH. ++$as_unset CDPATH ++ ++ ++if test "x$CONFIG_SHELL" = x; then ++ if (eval ":") 2>/dev/null; then ++ as_have_required=yes ++else ++ as_have_required=no ++fi ++ ++ if test $as_have_required = yes && (eval ": ++(as_func_return () { ++ (exit \$1) ++} ++as_func_success () { ++ as_func_return 0 ++} ++as_func_failure () { ++ as_func_return 1 ++} ++as_func_ret_success () { ++ return 0 ++} ++as_func_ret_failure () { ++ return 1 ++} ++ ++exitcode=0 ++if as_func_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_success failed. ++fi ++ ++if as_func_failure; then ++ exitcode=1 ++ echo as_func_failure succeeded. ++fi ++ ++if as_func_ret_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_ret_success failed. ++fi ++ ++if as_func_ret_failure; then ++ exitcode=1 ++ echo as_func_ret_failure succeeded. ++fi ++ ++if ( set x; as_func_ret_success y && test x = \"\$1\" ); then ++ : ++else ++ exitcode=1 ++ echo positional parameters were not saved. ++fi ++ ++test \$exitcode = 0) || { (exit 1); exit 1; } ++ ++( ++ as_lineno_1=\$LINENO ++ as_lineno_2=\$LINENO ++ test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && ++ test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ++") 2> /dev/null; then ++ : ++else ++ as_candidate_shells= ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ case $as_dir in ++ /*) ++ for as_base in sh bash ksh sh5; do ++ as_candidate_shells="$as_candidate_shells $as_dir/$as_base" ++ done;; ++ esac ++done ++IFS=$as_save_IFS ++ ++ ++ for as_shell in $as_candidate_shells $SHELL; do ++ # Try only shells that exist, to save several forks. ++ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ++ { ("$as_shell") 2> /dev/null <<\_ASEOF ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++: ++_ASEOF ++}; then ++ CONFIG_SHELL=$as_shell ++ as_have_required=yes ++ if { "$as_shell" 2> /dev/null <<\_ASEOF ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++: ++(as_func_return () { ++ (exit $1) ++} ++as_func_success () { ++ as_func_return 0 ++} ++as_func_failure () { ++ as_func_return 1 ++} ++as_func_ret_success () { ++ return 0 ++} ++as_func_ret_failure () { ++ return 1 ++} ++ ++exitcode=0 ++if as_func_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_success failed. ++fi ++ ++if as_func_failure; then ++ exitcode=1 ++ echo as_func_failure succeeded. ++fi ++ ++if as_func_ret_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_ret_success failed. ++fi ++ ++if as_func_ret_failure; then ++ exitcode=1 ++ echo as_func_ret_failure succeeded. ++fi ++ ++if ( set x; as_func_ret_success y && test x = "$1" ); then ++ : ++else ++ exitcode=1 ++ echo positional parameters were not saved. ++fi ++ ++test $exitcode = 0) || { (exit 1); exit 1; } ++ ++( ++ as_lineno_1=$LINENO ++ as_lineno_2=$LINENO ++ test "x$as_lineno_1" != "x$as_lineno_2" && ++ test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } ++ ++_ASEOF ++}; then ++ break ++fi ++ ++fi ++ ++ done ++ ++ if test "x$CONFIG_SHELL" != x; then ++ for as_var in BASH_ENV ENV ++ do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ done ++ export CONFIG_SHELL ++ exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} ++fi ++ ++ ++ if test $as_have_required = no; then ++ echo This script requires a shell more modern than all the ++ echo shells that I found on your system. Please install a ++ echo modern shell, or manually run the script under such a ++ echo shell if you do have one. ++ { (exit 1); exit 1; } ++fi ++ ++ ++fi ++ ++fi ++ ++ ++ ++(eval "as_func_return () { ++ (exit \$1) ++} ++as_func_success () { ++ as_func_return 0 ++} ++as_func_failure () { ++ as_func_return 1 ++} ++as_func_ret_success () { ++ return 0 ++} ++as_func_ret_failure () { ++ return 1 ++} ++ ++exitcode=0 ++if as_func_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_success failed. ++fi ++ ++if as_func_failure; then ++ exitcode=1 ++ echo as_func_failure succeeded. ++fi ++ ++if as_func_ret_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_ret_success failed. ++fi ++ ++if as_func_ret_failure; then ++ exitcode=1 ++ echo as_func_ret_failure succeeded. ++fi ++ ++if ( set x; as_func_ret_success y && test x = \"\$1\" ); then ++ : ++else ++ exitcode=1 ++ echo positional parameters were not saved. ++fi ++ ++test \$exitcode = 0") || { ++ echo No shell found that supports shell functions. ++ echo Please tell autoconf@gnu.org about your system, ++ echo including any error possibly output before this ++ echo message ++} ++ ++ ++ ++ as_lineno_1=$LINENO ++ as_lineno_2=$LINENO ++ test "x$as_lineno_1" != "x$as_lineno_2" && ++ test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { ++ ++ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO ++ # uniformly replaced by the line number. The first 'sed' inserts a ++ # line-number line after each line using $LINENO; the second 'sed' ++ # does the real work. The second script uses 'N' to pair each ++ # line-number line with the line containing $LINENO, and appends ++ # trailing '-' during substitution so that $LINENO is not a special ++ # case at line end. ++ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ++ # scripts with optimization help from Paolo Bonzini. Blame Lee ++ # E. McMahon (1931-1989) for sed's syntax. :-) ++ sed -n ' ++ p ++ /[$]LINENO/= ++ ' <$as_myself | ++ sed ' ++ s/[$]LINENO.*/&-/ ++ t lineno ++ b ++ :lineno ++ N ++ :loop ++ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ ++ t loop ++ s/-\n.*// ++ ' >$as_me.lineno && ++ chmod +x "$as_me.lineno" || ++ { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { (exit 1); exit 1; }; } ++ ++ # Don't try to exec as it changes $[0], causing all sort of problems ++ # (the dirname of $[0] is not the place where we might find the ++ # original and so on. Autoconf is especially sensitive to this). ++ . "./$as_me.lineno" ++ # Exit status is that of the last command. ++ exit ++} ++ ++ ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi ++ ++ECHO_C= ECHO_N= ECHO_T= ++case `echo -n x` in ++-n*) ++ case `echo 'x\c'` in ++ *c*) ECHO_T=' ';; # ECHO_T is single tab character. ++ *) ECHO_C='\c';; ++ esac;; ++*) ++ ECHO_N='-n';; ++esac ++ ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++rm -f conf$$ conf$$.exe conf$$.file ++if test -d conf$$.dir; then ++ rm -f conf$$.dir/conf$$.file ++else ++ rm -f conf$$.dir ++ mkdir conf$$.dir ++fi ++echo >conf$$.file ++if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -p' ++elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++else ++ as_ln_s='cp -p' ++fi ++rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file ++rmdir conf$$.dir 2>/dev/null ++ ++if mkdir -p . 2>/dev/null; then ++ as_mkdir_p=: ++else ++ test -d ./-p && rmdir ./-p ++ as_mkdir_p=false ++fi ++ ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' ++else ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' ++fi ++as_executable_p=$as_test_x ++ ++# Sed expression to map a string onto a valid CPP name. ++as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" ++ ++# Sed expression to map a string onto a valid variable name. ++as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" ++ ++ ++ ++exec 7<&0 &1 ++ ++# Name of the host. ++# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, ++# so uname gets run too. ++ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` ++ ++# ++# Initializations. ++# ++ac_default_prefix=/usr/local ++ac_clean_files= ++ac_config_libobj_dir=. ++LIBOBJS= ++cross_compiling=no ++subdirs= ++MFLAGS= ++MAKEFLAGS= ++SHELL=${CONFIG_SHELL-/bin/sh} ++ ++# Identity of this package. ++PACKAGE_NAME= ++PACKAGE_TARNAME= ++PACKAGE_VERSION= ++PACKAGE_STRING= ++PACKAGE_BUGREPORT= ++ ++ac_unique_file="Makefile.in" ++ac_subst_vars='SHELL ++PATH_SEPARATOR ++PACKAGE_NAME ++PACKAGE_TARNAME ++PACKAGE_VERSION ++PACKAGE_STRING ++PACKAGE_BUGREPORT ++exec_prefix ++prefix ++program_transform_name ++bindir ++sbindir ++libexecdir ++datarootdir ++datadir ++sysconfdir ++sharedstatedir ++localstatedir ++includedir ++oldincludedir ++docdir ++infodir ++htmldir ++dvidir ++pdfdir ++psdir ++libdir ++localedir ++mandir ++DEFS ++ECHO_C ++ECHO_N ++ECHO_T ++LIBS ++build_alias ++host_alias ++target_alias ++CC ++CFLAGS ++LDFLAGS ++CPPFLAGS ++ac_ct_CC ++EXEEXT ++OBJEXT ++CXX ++CXXFLAGS ++ac_ct_CXX ++RANLIB ++CXX_PIC ++C_PIC ++LD_SHARED ++SO_EXT ++CXX_WFLAGS ++C_WFLAGS ++GDAL_CONFIG ++GDAL_INC ++AUTOLOAD_DIR ++ECW_INCLUDE ++ECW_SETTING ++LIBOBJS ++LTLIBOBJS' ++ac_subst_files='' ++ ac_precious_vars='build_alias ++host_alias ++target_alias ++CC ++CFLAGS ++LDFLAGS ++LIBS ++CPPFLAGS ++CXX ++CXXFLAGS ++CCC' ++ ++ ++# Initialize some variables set by options. ++ac_init_help= ++ac_init_version=false ++# The variables have the same names as the options, with ++# dashes changed to underlines. ++cache_file=/dev/null ++exec_prefix=NONE ++no_create= ++no_recursion= ++prefix=NONE ++program_prefix=NONE ++program_suffix=NONE ++program_transform_name=s,x,x, ++silent= ++site= ++srcdir= ++verbose= ++x_includes=NONE ++x_libraries=NONE ++ ++# Installation directory options. ++# These are left unexpanded so users can "make install exec_prefix=/foo" ++# and all the variables that are supposed to be based on exec_prefix ++# by default will actually change. ++# Use braces instead of parens because sh, perl, etc. also accept them. ++# (The list follows the same order as the GNU Coding Standards.) ++bindir='${exec_prefix}/bin' ++sbindir='${exec_prefix}/sbin' ++libexecdir='${exec_prefix}/libexec' ++datarootdir='${prefix}/share' ++datadir='${datarootdir}' ++sysconfdir='${prefix}/etc' ++sharedstatedir='${prefix}/com' ++localstatedir='${prefix}/var' ++includedir='${prefix}/include' ++oldincludedir='/usr/include' ++docdir='${datarootdir}/doc/${PACKAGE}' ++infodir='${datarootdir}/info' ++htmldir='${docdir}' ++dvidir='${docdir}' ++pdfdir='${docdir}' ++psdir='${docdir}' ++libdir='${exec_prefix}/lib' ++localedir='${datarootdir}/locale' ++mandir='${datarootdir}/man' ++ ++ac_prev= ++ac_dashdash= ++for ac_option ++do ++ # If the previous option needs an argument, assign it. ++ if test -n "$ac_prev"; then ++ eval $ac_prev=\$ac_option ++ ac_prev= ++ continue ++ fi ++ ++ case $ac_option in ++ *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; ++ *) ac_optarg=yes ;; ++ esac ++ ++ # Accept the important Cygnus configure options, so we can diagnose typos. ++ ++ case $ac_dashdash$ac_option in ++ --) ++ ac_dashdash=yes ;; ++ ++ -bindir | --bindir | --bindi | --bind | --bin | --bi) ++ ac_prev=bindir ;; ++ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) ++ bindir=$ac_optarg ;; ++ ++ -build | --build | --buil | --bui | --bu) ++ ac_prev=build_alias ;; ++ -build=* | --build=* | --buil=* | --bui=* | --bu=*) ++ build_alias=$ac_optarg ;; ++ ++ -cache-file | --cache-file | --cache-fil | --cache-fi \ ++ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ++ ac_prev=cache_file ;; ++ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ ++ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) ++ cache_file=$ac_optarg ;; ++ ++ --config-cache | -C) ++ cache_file=config.cache ;; ++ ++ -datadir | --datadir | --datadi | --datad) ++ ac_prev=datadir ;; ++ -datadir=* | --datadir=* | --datadi=* | --datad=*) ++ datadir=$ac_optarg ;; ++ ++ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ ++ | --dataroo | --dataro | --datar) ++ ac_prev=datarootdir ;; ++ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ ++ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) ++ datarootdir=$ac_optarg ;; ++ ++ -disable-* | --disable-*) ++ ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid feature name: $ac_feature" >&2 ++ { (exit 1); exit 1; }; } ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ++ eval enable_$ac_feature=no ;; ++ ++ -docdir | --docdir | --docdi | --doc | --do) ++ ac_prev=docdir ;; ++ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) ++ docdir=$ac_optarg ;; ++ ++ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ++ ac_prev=dvidir ;; ++ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) ++ dvidir=$ac_optarg ;; ++ ++ -enable-* | --enable-*) ++ ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid feature name: $ac_feature" >&2 ++ { (exit 1); exit 1; }; } ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ++ eval enable_$ac_feature=\$ac_optarg ;; ++ ++ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ ++ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ ++ | --exec | --exe | --ex) ++ ac_prev=exec_prefix ;; ++ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ ++ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ ++ | --exec=* | --exe=* | --ex=*) ++ exec_prefix=$ac_optarg ;; ++ ++ -gas | --gas | --ga | --g) ++ # Obsolete; use --with-gas. ++ with_gas=yes ;; ++ ++ -help | --help | --hel | --he | -h) ++ ac_init_help=long ;; ++ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ++ ac_init_help=recursive ;; ++ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ++ ac_init_help=short ;; ++ ++ -host | --host | --hos | --ho) ++ ac_prev=host_alias ;; ++ -host=* | --host=* | --hos=* | --ho=*) ++ host_alias=$ac_optarg ;; ++ ++ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ++ ac_prev=htmldir ;; ++ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ ++ | --ht=*) ++ htmldir=$ac_optarg ;; ++ ++ -includedir | --includedir | --includedi | --included | --include \ ++ | --includ | --inclu | --incl | --inc) ++ ac_prev=includedir ;; ++ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ ++ | --includ=* | --inclu=* | --incl=* | --inc=*) ++ includedir=$ac_optarg ;; ++ ++ -infodir | --infodir | --infodi | --infod | --info | --inf) ++ ac_prev=infodir ;; ++ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) ++ infodir=$ac_optarg ;; ++ ++ -libdir | --libdir | --libdi | --libd) ++ ac_prev=libdir ;; ++ -libdir=* | --libdir=* | --libdi=* | --libd=*) ++ libdir=$ac_optarg ;; ++ ++ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ ++ | --libexe | --libex | --libe) ++ ac_prev=libexecdir ;; ++ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ ++ | --libexe=* | --libex=* | --libe=*) ++ libexecdir=$ac_optarg ;; ++ ++ -localedir | --localedir | --localedi | --localed | --locale) ++ ac_prev=localedir ;; ++ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) ++ localedir=$ac_optarg ;; ++ ++ -localstatedir | --localstatedir | --localstatedi | --localstated \ ++ | --localstate | --localstat | --localsta | --localst | --locals) ++ ac_prev=localstatedir ;; ++ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ ++ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) ++ localstatedir=$ac_optarg ;; ++ ++ -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ++ ac_prev=mandir ;; ++ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) ++ mandir=$ac_optarg ;; ++ ++ -nfp | --nfp | --nf) ++ # Obsolete; use --without-fp. ++ with_fp=no ;; ++ ++ -no-create | --no-create | --no-creat | --no-crea | --no-cre \ ++ | --no-cr | --no-c | -n) ++ no_create=yes ;; ++ ++ -no-recursion | --no-recursion | --no-recursio | --no-recursi \ ++ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ++ no_recursion=yes ;; ++ ++ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ ++ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ ++ | --oldin | --oldi | --old | --ol | --o) ++ ac_prev=oldincludedir ;; ++ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ ++ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ ++ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) ++ oldincludedir=$ac_optarg ;; ++ ++ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ++ ac_prev=prefix ;; ++ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) ++ prefix=$ac_optarg ;; ++ ++ -program-prefix | --program-prefix | --program-prefi | --program-pref \ ++ | --program-pre | --program-pr | --program-p) ++ ac_prev=program_prefix ;; ++ -program-prefix=* | --program-prefix=* | --program-prefi=* \ ++ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) ++ program_prefix=$ac_optarg ;; ++ ++ -program-suffix | --program-suffix | --program-suffi | --program-suff \ ++ | --program-suf | --program-su | --program-s) ++ ac_prev=program_suffix ;; ++ -program-suffix=* | --program-suffix=* | --program-suffi=* \ ++ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) ++ program_suffix=$ac_optarg ;; ++ ++ -program-transform-name | --program-transform-name \ ++ | --program-transform-nam | --program-transform-na \ ++ | --program-transform-n | --program-transform- \ ++ | --program-transform | --program-transfor \ ++ | --program-transfo | --program-transf \ ++ | --program-trans | --program-tran \ ++ | --progr-tra | --program-tr | --program-t) ++ ac_prev=program_transform_name ;; ++ -program-transform-name=* | --program-transform-name=* \ ++ | --program-transform-nam=* | --program-transform-na=* \ ++ | --program-transform-n=* | --program-transform-=* \ ++ | --program-transform=* | --program-transfor=* \ ++ | --program-transfo=* | --program-transf=* \ ++ | --program-trans=* | --program-tran=* \ ++ | --progr-tra=* | --program-tr=* | --program-t=*) ++ program_transform_name=$ac_optarg ;; ++ ++ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ++ ac_prev=pdfdir ;; ++ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) ++ pdfdir=$ac_optarg ;; ++ ++ -psdir | --psdir | --psdi | --psd | --ps) ++ ac_prev=psdir ;; ++ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) ++ psdir=$ac_optarg ;; ++ ++ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ ++ | -silent | --silent | --silen | --sile | --sil) ++ silent=yes ;; ++ ++ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ++ ac_prev=sbindir ;; ++ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ ++ | --sbi=* | --sb=*) ++ sbindir=$ac_optarg ;; ++ ++ -sharedstatedir | --sharedstatedir | --sharedstatedi \ ++ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ ++ | --sharedst | --shareds | --shared | --share | --shar \ ++ | --sha | --sh) ++ ac_prev=sharedstatedir ;; ++ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ ++ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ ++ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ ++ | --sha=* | --sh=*) ++ sharedstatedir=$ac_optarg ;; ++ ++ -site | --site | --sit) ++ ac_prev=site ;; ++ -site=* | --site=* | --sit=*) ++ site=$ac_optarg ;; ++ ++ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ++ ac_prev=srcdir ;; ++ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) ++ srcdir=$ac_optarg ;; ++ ++ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ ++ | --syscon | --sysco | --sysc | --sys | --sy) ++ ac_prev=sysconfdir ;; ++ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ ++ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) ++ sysconfdir=$ac_optarg ;; ++ ++ -target | --target | --targe | --targ | --tar | --ta | --t) ++ ac_prev=target_alias ;; ++ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) ++ target_alias=$ac_optarg ;; ++ ++ -v | -verbose | --verbose | --verbos | --verbo | --verb) ++ verbose=yes ;; ++ ++ -version | --version | --versio | --versi | --vers | -V) ++ ac_init_version=: ;; ++ ++ -with-* | --with-*) ++ ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid package name: $ac_package" >&2 ++ { (exit 1); exit 1; }; } ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ++ eval with_$ac_package=\$ac_optarg ;; ++ ++ -without-* | --without-*) ++ ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid package name: $ac_package" >&2 ++ { (exit 1); exit 1; }; } ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ++ eval with_$ac_package=no ;; ++ ++ --x) ++ # Obsolete; use --with-x. ++ with_x=yes ;; ++ ++ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ ++ | --x-incl | --x-inc | --x-in | --x-i) ++ ac_prev=x_includes ;; ++ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ ++ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) ++ x_includes=$ac_optarg ;; ++ ++ -x-libraries | --x-libraries | --x-librarie | --x-librari \ ++ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ++ ac_prev=x_libraries ;; ++ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ ++ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) ++ x_libraries=$ac_optarg ;; ++ ++ -*) { echo "$as_me: error: unrecognized option: $ac_option ++Try \`$0 --help' for more information." >&2 ++ { (exit 1); exit 1; }; } ++ ;; ++ ++ *=*) ++ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 ++ { (exit 1); exit 1; }; } ++ eval $ac_envvar=\$ac_optarg ++ export $ac_envvar ;; ++ ++ *) ++ # FIXME: should be removed in autoconf 3.0. ++ echo "$as_me: WARNING: you should use --build, --host, --target" >&2 ++ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ echo "$as_me: WARNING: invalid host type: $ac_option" >&2 ++ : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ++ ;; ++ ++ esac ++done ++ ++if test -n "$ac_prev"; then ++ ac_option=--`echo $ac_prev | sed 's/_/-/g'` ++ { echo "$as_me: error: missing argument to $ac_option" >&2 ++ { (exit 1); exit 1; }; } ++fi ++ ++# Be sure to have absolute directory names. ++for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ ++ datadir sysconfdir sharedstatedir localstatedir includedir \ ++ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ ++ libdir localedir mandir ++do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ [\\/$]* | ?:[\\/]* ) continue;; ++ NONE | '' ) case $ac_var in *prefix ) continue;; esac;; ++ esac ++ { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 ++ { (exit 1); exit 1; }; } ++done ++ ++# There might be people who depend on the old broken behavior: `$host' ++# used to hold the argument of --host etc. ++# FIXME: To remove some day. ++build=$build_alias ++host=$host_alias ++target=$target_alias ++ ++# FIXME: To remove some day. ++if test "x$host_alias" != x; then ++ if test "x$build_alias" = x; then ++ cross_compiling=maybe ++ echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. ++ If a cross compiler is detected then cross compile mode will be used." >&2 ++ elif test "x$build_alias" != "x$host_alias"; then ++ cross_compiling=yes ++ fi ++fi ++ ++ac_tool_prefix= ++test -n "$host_alias" && ac_tool_prefix=$host_alias- ++ ++test "$silent" = yes && exec 6>/dev/null ++ ++ ++ac_pwd=`pwd` && test -n "$ac_pwd" && ++ac_ls_di=`ls -di .` && ++ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || ++ { echo "$as_me: error: Working directory cannot be determined" >&2 ++ { (exit 1); exit 1; }; } ++test "X$ac_ls_di" = "X$ac_pwd_ls_di" || ++ { echo "$as_me: error: pwd does not report name of working directory" >&2 ++ { (exit 1); exit 1; }; } ++ ++ ++# Find the source files, if location was not specified. ++if test -z "$srcdir"; then ++ ac_srcdir_defaulted=yes ++ # Try the directory containing this script, then the parent directory. ++ ac_confdir=`$as_dirname -- "$0" || ++$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$0" : 'X\(//\)[^/]' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++echo X"$0" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ srcdir=$ac_confdir ++ if test ! -r "$srcdir/$ac_unique_file"; then ++ srcdir=.. ++ fi ++else ++ ac_srcdir_defaulted=no ++fi ++if test ! -r "$srcdir/$ac_unique_file"; then ++ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." ++ { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 ++ { (exit 1); exit 1; }; } ++fi ++ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ++ac_abs_confdir=`( ++ cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 ++ { (exit 1); exit 1; }; } ++ pwd)` ++# When building in place, set srcdir=. ++if test "$ac_abs_confdir" = "$ac_pwd"; then ++ srcdir=. ++fi ++# Remove unnecessary trailing slashes from srcdir. ++# Double slashes in file names in object file debugging info ++# mess up M-x gdb in Emacs. ++case $srcdir in ++*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; ++esac ++for ac_var in $ac_precious_vars; do ++ eval ac_env_${ac_var}_set=\${${ac_var}+set} ++ eval ac_env_${ac_var}_value=\$${ac_var} ++ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} ++ eval ac_cv_env_${ac_var}_value=\$${ac_var} ++done ++ ++# ++# Report the --help message. ++# ++if test "$ac_init_help" = "long"; then ++ # Omit some internal or obsolete options to make the list less imposing. ++ # This message is too long to be a string in the A/UX 3.1 sh. ++ cat <<_ACEOF ++\`configure' configures this package to adapt to many kinds of systems. ++ ++Usage: $0 [OPTION]... [VAR=VALUE]... ++ ++To assign environment variables (e.g., CC, CFLAGS...), specify them as ++VAR=VALUE. See below for descriptions of some of the useful variables. ++ ++Defaults for the options are specified in brackets. ++ ++Configuration: ++ -h, --help display this help and exit ++ --help=short display options specific to this package ++ --help=recursive display the short help of all the included packages ++ -V, --version display version information and exit ++ -q, --quiet, --silent do not print \`checking...' messages ++ --cache-file=FILE cache test results in FILE [disabled] ++ -C, --config-cache alias for \`--cache-file=config.cache' ++ -n, --no-create do not create output files ++ --srcdir=DIR find the sources in DIR [configure dir or \`..'] ++ ++Installation directories: ++ --prefix=PREFIX install architecture-independent files in PREFIX ++ [$ac_default_prefix] ++ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX ++ [PREFIX] ++ ++By default, \`make install' will install all the files in ++\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify ++an installation prefix other than \`$ac_default_prefix' using \`--prefix', ++for instance \`--prefix=\$HOME'. ++ ++For better control, use the options below. ++ ++Fine tuning of the installation directories: ++ --bindir=DIR user executables [EPREFIX/bin] ++ --sbindir=DIR system admin executables [EPREFIX/sbin] ++ --libexecdir=DIR program executables [EPREFIX/libexec] ++ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] ++ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] ++ --localstatedir=DIR modifiable single-machine data [PREFIX/var] ++ --libdir=DIR object code libraries [EPREFIX/lib] ++ --includedir=DIR C header files [PREFIX/include] ++ --oldincludedir=DIR C header files for non-gcc [/usr/include] ++ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] ++ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] ++ --infodir=DIR info documentation [DATAROOTDIR/info] ++ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] ++ --mandir=DIR man documentation [DATAROOTDIR/man] ++ --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] ++ --htmldir=DIR html documentation [DOCDIR] ++ --dvidir=DIR dvi documentation [DOCDIR] ++ --pdfdir=DIR pdf documentation [DOCDIR] ++ --psdir=DIR ps documentation [DOCDIR] ++_ACEOF ++ ++ cat <<\_ACEOF ++_ACEOF ++fi ++ ++if test -n "$ac_init_help"; then ++ ++ cat <<\_ACEOF ++ ++Optional Packages: ++ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] ++ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) ++ --with-ld-shared=cmd provide shared library link ++ --with-gdal=PATH GDAL (PATH is path to gdal-config) ++ --with-autoload=DIR Directory for autoload drivers ++ --with-ecw=ARG Include ECW support (ARG=ECW SDK Path) ++ ++Some influential environment variables: ++ CC C compiler command ++ CFLAGS C compiler flags ++ LDFLAGS linker flags, e.g. -L if you have libraries in a ++ nonstandard directory ++ LIBS libraries to pass to the linker, e.g. -l ++ CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if ++ you have headers in a nonstandard directory ++ CXX C++ compiler command ++ CXXFLAGS C++ compiler flags ++ ++Use these variables to override the choices made by `configure' or to help ++it to find libraries and programs with nonstandard names/locations. ++ ++_ACEOF ++ac_status=$? ++fi ++ ++if test "$ac_init_help" = "recursive"; then ++ # If there are subdirs, report their specific --help. ++ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue ++ test -d "$ac_dir" || continue ++ ac_builddir=. ++ ++case "$ac_dir" in ++.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; ++*) ++ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ # A ".." for each directory in $ac_dir_suffix. ++ ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ case $ac_top_builddir_sub in ++ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; ++ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; ++ esac ;; ++esac ++ac_abs_top_builddir=$ac_pwd ++ac_abs_builddir=$ac_pwd$ac_dir_suffix ++# for backward compatibility: ++ac_top_builddir=$ac_top_build_prefix ++ ++case $srcdir in ++ .) # We are building in place. ++ ac_srcdir=. ++ ac_top_srcdir=$ac_top_builddir_sub ++ ac_abs_top_srcdir=$ac_pwd ;; ++ [\\/]* | ?:[\\/]* ) # Absolute name. ++ ac_srcdir=$srcdir$ac_dir_suffix; ++ ac_top_srcdir=$srcdir ++ ac_abs_top_srcdir=$srcdir ;; ++ *) # Relative name. ++ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ++ ac_top_srcdir=$ac_top_build_prefix$srcdir ++ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; ++esac ++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix ++ ++ cd "$ac_dir" || { ac_status=$?; continue; } ++ # Check for guested configure. ++ if test -f "$ac_srcdir/configure.gnu"; then ++ echo && ++ $SHELL "$ac_srcdir/configure.gnu" --help=recursive ++ elif test -f "$ac_srcdir/configure"; then ++ echo && ++ $SHELL "$ac_srcdir/configure" --help=recursive ++ else ++ echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ++ fi || ac_status=$? ++ cd "$ac_pwd" || { ac_status=$?; break; } ++ done ++fi ++ ++test -n "$ac_init_help" && exit $ac_status ++if $ac_init_version; then ++ cat <<\_ACEOF ++configure ++generated by GNU Autoconf 2.61 ++ ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, ++2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++This configure script is free software; the Free Software Foundation ++gives unlimited permission to copy, distribute and modify it. ++_ACEOF ++ exit ++fi ++cat >config.log <<_ACEOF ++This file contains any messages produced by compilers while ++running configure, to aid debugging if configure makes a mistake. ++ ++It was created by $as_me, which was ++generated by GNU Autoconf 2.61. Invocation command line was ++ ++ $ $0 $@ ++ ++_ACEOF ++exec 5>>config.log ++{ ++cat <<_ASUNAME ++## --------- ## ++## Platform. ## ++## --------- ## ++ ++hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` ++uname -m = `(uname -m) 2>/dev/null || echo unknown` ++uname -r = `(uname -r) 2>/dev/null || echo unknown` ++uname -s = `(uname -s) 2>/dev/null || echo unknown` ++uname -v = `(uname -v) 2>/dev/null || echo unknown` ++ ++/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` ++/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` ++ ++/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` ++/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` ++/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` ++/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` ++/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` ++/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` ++/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` ++ ++_ASUNAME ++ ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ echo "PATH: $as_dir" ++done ++IFS=$as_save_IFS ++ ++} >&5 ++ ++cat >&5 <<_ACEOF ++ ++ ++## ----------- ## ++## Core tests. ## ++## ----------- ## ++ ++_ACEOF ++ ++ ++# Keep a trace of the command line. ++# Strip out --no-create and --no-recursion so they do not pile up. ++# Strip out --silent because we don't want to record it for future runs. ++# Also quote any args containing shell meta-characters. ++# Make two passes to allow for proper duplicate-argument suppression. ++ac_configure_args= ++ac_configure_args0= ++ac_configure_args1= ++ac_must_keep_next=false ++for ac_pass in 1 2 ++do ++ for ac_arg ++ do ++ case $ac_arg in ++ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; ++ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ ++ | -silent | --silent | --silen | --sile | --sil) ++ continue ;; ++ *\'*) ++ ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ esac ++ case $ac_pass in ++ 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; ++ 2) ++ ac_configure_args1="$ac_configure_args1 '$ac_arg'" ++ if test $ac_must_keep_next = true; then ++ ac_must_keep_next=false # Got value, back to normal. ++ else ++ case $ac_arg in ++ *=* | --config-cache | -C | -disable-* | --disable-* \ ++ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ ++ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ ++ | -with-* | --with-* | -without-* | --without-* | --x) ++ case "$ac_configure_args0 " in ++ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; ++ esac ++ ;; ++ -* ) ac_must_keep_next=true ;; ++ esac ++ fi ++ ac_configure_args="$ac_configure_args '$ac_arg'" ++ ;; ++ esac ++ done ++done ++$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } ++$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } ++ ++# When interrupted or exit'd, cleanup temporary files, and complete ++# config.log. We remove comments because anyway the quotes in there ++# would cause problems or look ugly. ++# WARNING: Use '\'' to represent an apostrophe within the trap. ++# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. ++trap 'exit_status=$? ++ # Save into config.log some information that might help in debugging. ++ { ++ echo ++ ++ cat <<\_ASBOX ++## ---------------- ## ++## Cache variables. ## ++## ---------------- ## ++_ASBOX ++ echo ++ # The following way of writing the cache mishandles newlines in values, ++( ++ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do ++ eval ac_val=\$$ac_var ++ case $ac_val in #( ++ *${as_nl}*) ++ case $ac_var in #( ++ *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ++echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ++ esac ++ case $ac_var in #( ++ _ | IFS | as_nl) ;; #( ++ *) $as_unset $ac_var ;; ++ esac ;; ++ esac ++ done ++ (set) 2>&1 | ++ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( ++ *${as_nl}ac_space=\ *) ++ sed -n \ ++ "s/'\''/'\''\\\\'\'''\''/g; ++ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ++ ;; #( ++ *) ++ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ++ ;; ++ esac | ++ sort ++) ++ echo ++ ++ cat <<\_ASBOX ++## ----------------- ## ++## Output variables. ## ++## ----------------- ## ++_ASBOX ++ echo ++ for ac_var in $ac_subst_vars ++ do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ echo "$ac_var='\''$ac_val'\''" ++ done | sort ++ echo ++ ++ if test -n "$ac_subst_files"; then ++ cat <<\_ASBOX ++## ------------------- ## ++## File substitutions. ## ++## ------------------- ## ++_ASBOX ++ echo ++ for ac_var in $ac_subst_files ++ do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ echo "$ac_var='\''$ac_val'\''" ++ done | sort ++ echo ++ fi ++ ++ if test -s confdefs.h; then ++ cat <<\_ASBOX ++## ----------- ## ++## confdefs.h. ## ++## ----------- ## ++_ASBOX ++ echo ++ cat confdefs.h ++ echo ++ fi ++ test "$ac_signal" != 0 && ++ echo "$as_me: caught signal $ac_signal" ++ echo "$as_me: exit $exit_status" ++ } >&5 ++ rm -f core *.core core.conftest.* && ++ rm -f -r conftest* confdefs* conf$$* $ac_clean_files && ++ exit $exit_status ++' 0 ++for ac_signal in 1 2 13 15; do ++ trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal ++done ++ac_signal=0 ++ ++# confdefs.h avoids OS command line length limits that DEFS can exceed. ++rm -f -r conftest* confdefs.h ++ ++# Predefined preprocessor variables. ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_NAME "$PACKAGE_NAME" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_TARNAME "$PACKAGE_TARNAME" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_VERSION "$PACKAGE_VERSION" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_STRING "$PACKAGE_STRING" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" ++_ACEOF ++ ++ ++# Let the site file select an alternate cache file if it wants to. ++# Prefer explicitly selected file to automatically selected ones. ++if test -n "$CONFIG_SITE"; then ++ set x "$CONFIG_SITE" ++elif test "x$prefix" != xNONE; then ++ set x "$prefix/share/config.site" "$prefix/etc/config.site" ++else ++ set x "$ac_default_prefix/share/config.site" \ ++ "$ac_default_prefix/etc/config.site" ++fi ++shift ++for ac_site_file ++do ++ if test -r "$ac_site_file"; then ++ { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 ++echo "$as_me: loading site script $ac_site_file" >&6;} ++ sed 's/^/| /' "$ac_site_file" >&5 ++ . "$ac_site_file" ++ fi ++done ++ ++ ++# Check that the precious variables saved in the cache have kept the same ++# value. ++ac_cache_corrupted=false ++for ac_var in $ac_precious_vars; do ++ eval ac_old_set=\$ac_cv_env_${ac_var}_set ++ eval ac_new_set=\$ac_env_${ac_var}_set ++ eval ac_old_val=\$ac_cv_env_${ac_var}_value ++ eval ac_new_val=\$ac_env_${ac_var}_value ++ case $ac_old_set,$ac_new_set in ++ set,) ++ { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ++ ac_cache_corrupted=: ;; ++ ,set) ++ { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 ++echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ++ ac_cache_corrupted=: ;; ++ ,);; ++ *) ++ if test "x$ac_old_val" != "x$ac_new_val"; then ++ { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 ++echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ++ { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 ++echo "$as_me: former value: $ac_old_val" >&2;} ++ { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 ++echo "$as_me: current value: $ac_new_val" >&2;} ++ ac_cache_corrupted=: ++ fi;; ++ esac ++ # Pass precious variables to config.status. ++ if test "$ac_new_set" = set; then ++ case $ac_new_val in ++ *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *) ac_arg=$ac_var=$ac_new_val ;; ++ esac ++ case " $ac_configure_args " in ++ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. ++ *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; ++ esac ++ fi ++done ++if $ac_cache_corrupted; then ++ { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 ++echo "$as_me: error: changes in the environment can compromise the build" >&2;} ++ { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 ++echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ ++ ++ ++ ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. ++set dummy ${ac_tool_prefix}gcc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CC="${ac_tool_prefix}gcc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_CC"; then ++ ac_ct_CC=$CC ++ # Extract the first word of "gcc", so it can be a program name with args. ++set dummy gcc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_CC"; then ++ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_CC="gcc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_CC=$ac_cv_prog_ac_ct_CC ++if test -n "$ac_ct_CC"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++echo "${ECHO_T}$ac_ct_CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ if test "x$ac_ct_CC" = x; then ++ CC="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ CC=$ac_ct_CC ++ fi ++else ++ CC="$ac_cv_prog_CC" ++fi ++ ++if test -z "$CC"; then ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. ++set dummy ${ac_tool_prefix}cc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CC="${ac_tool_prefix}cc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ fi ++fi ++if test -z "$CC"; then ++ # Extract the first word of "cc", so it can be a program name with args. ++set dummy cc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++ ac_prog_rejected=no ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ++ ac_prog_rejected=yes ++ continue ++ fi ++ ac_cv_prog_CC="cc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++if test $ac_prog_rejected = yes; then ++ # We found a bogon in the path, so make sure we never use it. ++ set dummy $ac_cv_prog_CC ++ shift ++ if test $# != 0; then ++ # We chose a different compiler from the bogus one. ++ # However, it has the same basename, so the bogon will be chosen ++ # first if we set CC to just the basename; use the full file name. ++ shift ++ ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" ++ fi ++fi ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$CC"; then ++ if test -n "$ac_tool_prefix"; then ++ for ac_prog in cl.exe ++ do ++ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. ++set dummy $ac_tool_prefix$ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CC="$ac_tool_prefix$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$CC" && break ++ done ++fi ++if test -z "$CC"; then ++ ac_ct_CC=$CC ++ for ac_prog in cl.exe ++do ++ # Extract the first word of "$ac_prog", so it can be a program name with args. ++set dummy $ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_CC"; then ++ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_CC="$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_CC=$ac_cv_prog_ac_ct_CC ++if test -n "$ac_ct_CC"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++echo "${ECHO_T}$ac_ct_CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$ac_ct_CC" && break ++done ++ ++ if test "x$ac_ct_CC" = x; then ++ CC="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ CC=$ac_ct_CC ++ fi ++fi ++ ++fi ++ ++ ++test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH ++See \`config.log' for more details." >&5 ++echo "$as_me: error: no acceptable C compiler found in \$PATH ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++ ++# Provide some information about the compiler. ++echo "$as_me:$LINENO: checking for C compiler version" >&5 ++ac_compiler=`set X $ac_compile; echo $2` ++{ (ac_try="$ac_compiler --version >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler --version >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -v >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -v >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -V >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -V >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++ ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++ac_clean_files_save=$ac_clean_files ++ac_clean_files="$ac_clean_files a.out a.exe b.out" ++# Try to create an executable without -o first, disregard a.out. ++# It will help us diagnose broken compilers, and finding out an intuition ++# of exeext. ++{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 ++echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ++ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ++# ++# List of possible output files, starting from the most likely. ++# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) ++# only as a last resort. b.out is created by i960 compilers. ++ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' ++# ++# The IRIX 6 linker writes into existing files which may not be ++# executable, retaining their permissions. Remove them first so a ++# subsequent execution test works. ++ac_rmfiles= ++for ac_file in $ac_files ++do ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ * ) ac_rmfiles="$ac_rmfiles $ac_file";; ++ esac ++done ++rm -f $ac_rmfiles ++ ++if { (ac_try="$ac_link_default" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link_default") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; then ++ # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. ++# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' ++# in a Makefile. We should not override ac_cv_exeext if it was cached, ++# so that the user can short-circuit this test for compilers unknown to ++# Autoconf. ++for ac_file in $ac_files '' ++do ++ test -f "$ac_file" || continue ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ++ ;; ++ [ab].out ) ++ # We found the default executable, but exeext='' is most ++ # certainly right. ++ break;; ++ *.* ) ++ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; ++ then :; else ++ ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ++ fi ++ # We set ac_cv_exeext here because the later test for it is not ++ # safe: cross compilers may not add the suffix if given an `-o' ++ # argument, so we may need to know it at that point already. ++ # Even if this section looks crufty: it has the advantage of ++ # actually working. ++ break;; ++ * ) ++ break;; ++ esac ++done ++test "$ac_cv_exeext" = no && ac_cv_exeext= ++ ++else ++ ac_file='' ++fi ++ ++{ echo "$as_me:$LINENO: result: $ac_file" >&5 ++echo "${ECHO_T}$ac_file" >&6; } ++if test -z "$ac_file"; then ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++{ { echo "$as_me:$LINENO: error: C compiler cannot create executables ++See \`config.log' for more details." >&5 ++echo "$as_me: error: C compiler cannot create executables ++See \`config.log' for more details." >&2;} ++ { (exit 77); exit 77; }; } ++fi ++ ++ac_exeext=$ac_cv_exeext ++ ++# Check that the compiler produces executables we can run. If not, either ++# the compiler is broken, or we cross compile. ++{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 ++echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } ++# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 ++# If not cross compiling, check that we can run a simple program. ++if test "$cross_compiling" != yes; then ++ if { ac_try='./$ac_file' ++ { (case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; }; then ++ cross_compiling=no ++ else ++ if test "$cross_compiling" = maybe; then ++ cross_compiling=yes ++ else ++ { { echo "$as_me:$LINENO: error: cannot run C compiled programs. ++If you meant to cross compile, use \`--host'. ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot run C compiled programs. ++If you meant to cross compile, use \`--host'. ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ fi ++fi ++{ echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } ++ ++rm -f a.out a.exe conftest$ac_cv_exeext b.out ++ac_clean_files=$ac_clean_files_save ++# Check that the compiler produces executables we can run. If not, either ++# the compiler is broken, or we cross compile. ++{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 ++echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 ++echo "${ECHO_T}$cross_compiling" >&6; } ++ ++{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 ++echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; then ++ # If both `conftest.exe' and `conftest' are `present' (well, observable) ++# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will ++# work properly (i.e., refer to `conftest.exe'), while it won't with ++# `rm'. ++for ac_file in conftest.exe conftest conftest.*; do ++ test -f "$ac_file" || continue ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ++ break;; ++ * ) break;; ++ esac ++done ++else ++ { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot compute suffix of executables: cannot compile and link ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++rm -f conftest$ac_cv_exeext ++{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ++echo "${ECHO_T}$ac_cv_exeext" >&6; } ++ ++rm -f conftest.$ac_ext ++EXEEXT=$ac_cv_exeext ++ac_exeext=$EXEEXT ++{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 ++echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } ++if test "${ac_cv_objext+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.o conftest.obj ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; then ++ for ac_file in conftest.o conftest.obj conftest.*; do ++ test -f "$ac_file" || continue; ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; ++ *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` ++ break;; ++ esac ++done ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot compute suffix of object files: cannot compile ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++rm -f conftest.$ac_cv_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ++echo "${ECHO_T}$ac_cv_objext" >&6; } ++OBJEXT=$ac_cv_objext ++ac_objext=$OBJEXT ++{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ++echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } ++if test "${ac_cv_c_compiler_gnu+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++#ifndef __GNUC__ ++ choke me ++#endif ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_compiler_gnu=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_compiler_gnu=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ac_cv_c_compiler_gnu=$ac_compiler_gnu ++ ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ++echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } ++GCC=`test $ac_compiler_gnu = yes && echo yes` ++ac_test_CFLAGS=${CFLAGS+set} ++ac_save_CFLAGS=$CFLAGS ++{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ++echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } ++if test "${ac_cv_prog_cc_g+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_save_c_werror_flag=$ac_c_werror_flag ++ ac_c_werror_flag=yes ++ ac_cv_prog_cc_g=no ++ CFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cc_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ CFLAGS="" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ : ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_c_werror_flag=$ac_save_c_werror_flag ++ CFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cc_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_c_werror_flag=$ac_save_c_werror_flag ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ++echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } ++if test "$ac_test_CFLAGS" = set; then ++ CFLAGS=$ac_save_CFLAGS ++elif test $ac_cv_prog_cc_g = yes; then ++ if test "$GCC" = yes; then ++ CFLAGS="-g -O2" ++ else ++ CFLAGS="-g" ++ fi ++else ++ if test "$GCC" = yes; then ++ CFLAGS="-O2" ++ else ++ CFLAGS= ++ fi ++fi ++{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ++echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } ++if test "${ac_cv_prog_cc_c89+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_cv_prog_cc_c89=no ++ac_save_CC=$CC ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++#include ++#include ++#include ++#include ++/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ ++struct buf { int x; }; ++FILE * (*rcsopen) (struct buf *, struct stat *, int); ++static char *e (p, i) ++ char **p; ++ int i; ++{ ++ return p[i]; ++} ++static char *f (char * (*g) (char **, int), char **p, ...) ++{ ++ char *s; ++ va_list v; ++ va_start (v,p); ++ s = g (p, va_arg (v,int)); ++ va_end (v); ++ return s; ++} ++ ++/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has ++ function prototypes and stuff, but not '\xHH' hex character constants. ++ These don't provoke an error unfortunately, instead are silently treated ++ as 'x'. The following induces an error, until -std is added to get ++ proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an ++ array size at least. It's necessary to write '\x00'==0 to get something ++ that's true only with -std. */ ++int osf4_cc_array ['\x00' == 0 ? 1 : -1]; ++ ++/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters ++ inside strings and character constants. */ ++#define FOO(x) 'x' ++int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; ++ ++int test (int i, double x); ++struct s1 {int (*f) (int a);}; ++struct s2 {int (*f) (double a);}; ++int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); ++int argc; ++char **argv; ++int ++main () ++{ ++return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ++ ; ++ return 0; ++} ++_ACEOF ++for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ ++ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" ++do ++ CC="$ac_save_CC $ac_arg" ++ rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cc_c89=$ac_arg ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ++fi ++ ++rm -f core conftest.err conftest.$ac_objext ++ test "x$ac_cv_prog_cc_c89" != "xno" && break ++done ++rm -f conftest.$ac_ext ++CC=$ac_save_CC ++ ++fi ++# AC_CACHE_VAL ++case "x$ac_cv_prog_cc_c89" in ++ x) ++ { echo "$as_me:$LINENO: result: none needed" >&5 ++echo "${ECHO_T}none needed" >&6; } ;; ++ xno) ++ { echo "$as_me:$LINENO: result: unsupported" >&5 ++echo "${ECHO_T}unsupported" >&6; } ;; ++ *) ++ CC="$CC $ac_cv_prog_cc_c89" ++ { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ++echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; ++esac ++ ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ ++ac_ext=cpp ++ac_cpp='$CXXCPP $CPPFLAGS' ++ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ++if test -z "$CXX"; then ++ if test -n "$CCC"; then ++ CXX=$CCC ++ else ++ if test -n "$ac_tool_prefix"; then ++ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC ++ do ++ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. ++set dummy $ac_tool_prefix$ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CXX+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CXX"; then ++ ac_cv_prog_CXX="$CXX" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CXX=$ac_cv_prog_CXX ++if test -n "$CXX"; then ++ { echo "$as_me:$LINENO: result: $CXX" >&5 ++echo "${ECHO_T}$CXX" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$CXX" && break ++ done ++fi ++if test -z "$CXX"; then ++ ac_ct_CXX=$CXX ++ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC ++do ++ # Extract the first word of "$ac_prog", so it can be a program name with args. ++set dummy $ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_CXX"; then ++ ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_CXX="$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_CXX=$ac_cv_prog_ac_ct_CXX ++if test -n "$ac_ct_CXX"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 ++echo "${ECHO_T}$ac_ct_CXX" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$ac_ct_CXX" && break ++done ++ ++ if test "x$ac_ct_CXX" = x; then ++ CXX="g++" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ CXX=$ac_ct_CXX ++ fi ++fi ++ ++ fi ++fi ++# Provide some information about the compiler. ++echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ++ac_compiler=`set X $ac_compile; echo $2` ++{ (ac_try="$ac_compiler --version >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler --version >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -v >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -v >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -V >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -V >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++ ++{ echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 ++echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } ++if test "${ac_cv_cxx_compiler_gnu+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++#ifndef __GNUC__ ++ choke me ++#endif ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_compiler_gnu=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_compiler_gnu=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ac_cv_cxx_compiler_gnu=$ac_compiler_gnu ++ ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 ++echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } ++GXX=`test $ac_compiler_gnu = yes && echo yes` ++ac_test_CXXFLAGS=${CXXFLAGS+set} ++ac_save_CXXFLAGS=$CXXFLAGS ++{ echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 ++echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } ++if test "${ac_cv_prog_cxx_g+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_save_cxx_werror_flag=$ac_cxx_werror_flag ++ ac_cxx_werror_flag=yes ++ ac_cv_prog_cxx_g=no ++ CXXFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cxx_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ CXXFLAGS="" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ : ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++ CXXFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cxx_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 ++echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } ++if test "$ac_test_CXXFLAGS" = set; then ++ CXXFLAGS=$ac_save_CXXFLAGS ++elif test $ac_cv_prog_cxx_g = yes; then ++ if test "$GXX" = yes; then ++ CXXFLAGS="-g -O2" ++ else ++ CXXFLAGS="-g" ++ fi ++else ++ if test "$GXX" = yes; then ++ CXXFLAGS="-O2" ++ else ++ CXXFLAGS= ++ fi ++fi ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ ++ ++if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. ++set dummy ${ac_tool_prefix}ranlib; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_RANLIB+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$RANLIB"; then ++ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++RANLIB=$ac_cv_prog_RANLIB ++if test -n "$RANLIB"; then ++ { echo "$as_me:$LINENO: result: $RANLIB" >&5 ++echo "${ECHO_T}$RANLIB" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_RANLIB"; then ++ ac_ct_RANLIB=$RANLIB ++ # Extract the first word of "ranlib", so it can be a program name with args. ++set dummy ranlib; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_RANLIB"; then ++ ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_RANLIB="ranlib" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB ++if test -n "$ac_ct_RANLIB"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ++echo "${ECHO_T}$ac_ct_RANLIB" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ if test "x$ac_ct_RANLIB" = x; then ++ RANLIB=":" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ RANLIB=$ac_ct_RANLIB ++ fi ++else ++ RANLIB="$ac_cv_prog_RANLIB" ++fi ++ ++ ++ echo 'void f(){}' > conftest.c ++ if test -z "`${CC-cc} -fPIC -c conftest.c 2>&1`"; then ++ C_PIC=-fPIC ++ else ++ C_PIC= ++ fi ++ if test -z "`${CXX-g++} -fPIC -c conftest.c 2>&1`"; then ++ CXX_PIC=-fPIC ++ else ++ CXX_PIC= ++ fi ++ rm -f conftest* ++ ++ CXX_PIC=$CXX_PIC ++ ++ C_PIC=$C_PIC ++ ++ ++ ++ echo 'void g(); int main(){ g(); return 0; }' > conftest1.c ++ ++ echo '#include ' > conftest2.c ++ echo 'void g(); void g(){printf("");}' >> conftest2.c ++ ${CC} ${C_PIC} -c conftest2.c ++ ++ SO_EXT="so" ++ export SO_EXT ++ LD_SHARED="/bin/true" ++ if test ! -z "`uname -a | grep IRIX`" ; then ++ IRIX_ALL=-all ++ else ++ IRIX_ALL= ++ fi ++ ++ ++# Check whether --with-ld-shared was given. ++if test "${with_ld_shared+set}" = set; then ++ withval=$with_ld_shared; ++fi ++ ++ ++ if test "$with_ld_shared" != "" ; then ++ if test "$with_ld_shared" = "no" ; then ++ echo "user disabled shared library support." ++ else ++ echo "using user supplied .so link command ... $with_ld_shared" ++ fi ++ LD_SHARED="$with_ld_shared" ++ fi ++ ++ ++ if test ! -z "`uname -a | grep CYGWIN`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`gcc -shared conftest2.o -o libconftest.dll`" ; then ++ if test -z "`${CC} conftest1.c -L./ -lconftest -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for Cygwin gcc -shared ... yes" ++ LD_SHARED="c++ -shared" ++ SO_EXT="dll" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ ++ if test ! -z "`uname | grep Darwin`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -dynamiclib conftest2.o -o libconftest.so 2>&1`" ; then ++ ${CC} -c conftest1.c ++ if test -z "`${CXX} conftest1.o libconftest.so -o conftest1 2>&1`"; then ++ DYLD_LIBRARY_PATH_OLD="$DYLD_LIBRARY_PATH" ++ if test -z "$DYLD_LIBRARY_PATH" ; then ++ DYLD_LIBRARY_PATH="`pwd`" ++ else ++ DYLD_LIBRARY_PATH="`pwd`:$DYLD_LIBRARY_PATH" ++ fi ++ export DYLD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -dynamiclib ... yes" ++ LD_SHARED="${CXX} -dynamiclib" ++ SO_EXT=dylib ++ fi ++ DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH_OLD" ++ fi ++ rm -f conftest1.o ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -shared $IRIX_ALL conftest2.o -o libconftest.so 2>&1|grep -v WARNING`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -shared ... yes" ++ LD_SHARED="${CXX} -shared $IRIX_ALL" ++ else ++ echo "checking for ${CXX} -shared ... no(3)" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ else ++ echo "checking for ${CXX} -shared ... no(2)" ++ fi ++ else ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ${CXX} -shared ... no(1)" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`ld -shared conftest2.o -o libconftest.so 2>&1`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ld -shared ... yes" ++ LD_SHARED="ld -shared" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ld -shared ... no" ++ if test ! -x /bin/true ; then ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ if test "$LD_SHARED" = "no" ; then ++ if test -x /bin/true ; then ++ LD_SHARED=/bin/true ++ else ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ ++ rm -f conftest* libconftest* ++ ++ LD_SHARED=$LD_SHARED ++ ++ SO_EXT=$SO_EXT ++ ++ ++ ++ # Remove -g from compile flags, we will add via CFG variable if ++ # we need it. ++ CXXFLAGS=`echo "$CXXFLAGS " | sed "s/-g //"` ++ CFLAGS=`echo "$CFLAGS " | sed "s/-g //"` ++ ++ # check for GNU compiler, and use -Wall ++ if test "$GCC" = "yes"; then ++ C_WFLAGS="-Wall" ++ ++cat >>confdefs.h <<\_ACEOF ++#define USE_GNUCC 1 ++_ACEOF ++ ++ fi ++ if test "$GXX" = "yes"; then ++ CXX_WFLAGS="-Wall" ++ ++cat >>confdefs.h <<\_ACEOF ++#define USE_GNUCC 1 ++_ACEOF ++ ++ fi ++ CXX_WFLAGS=$CXX_WFLAGS ++ ++ C_WFLAGS=$C_WFLAGS ++ ++ ++ ++ ++ ++# Check whether --with-gdal was given. ++if test "${with_gdal+set}" = set; then ++ withval=$with_gdal; ++fi ++ ++ ++if test "$with_gdal" = "yes" -o "$with_gdal" = "" ; then ++ ++ if test "`basename xx/$with_gdal`" = "gdal-config" ; then ++ GDAL_CONFIG="$with_gdal" ++ fi ++ ++ if test -z "$GDAL_CONFIG" ; then ++ # Extract the first word of "gdal-config", so it can be a program name with args. ++set dummy gdal-config; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_path_GDAL_CONFIG+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ case $GDAL_CONFIG in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_GDAL_CONFIG="$GDAL_CONFIG" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_path_GDAL_CONFIG="$as_dir/$ac_word$ac_exec_ext" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++ test -z "$ac_cv_path_GDAL_CONFIG" && ac_cv_path_GDAL_CONFIG="no" ++ ;; ++esac ++fi ++GDAL_CONFIG=$ac_cv_path_GDAL_CONFIG ++if test -n "$GDAL_CONFIG"; then ++ { echo "$as_me:$LINENO: result: $GDAL_CONFIG" >&5 ++echo "${ECHO_T}$GDAL_CONFIG" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ fi ++ ++ if test "$GDAL_CONFIG" = "no" ; then ++ { { echo "$as_me:$LINENO: error: couldn't find gdal-config" >&5 ++echo "$as_me: error: couldn't find gdal-config" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++elif test -n "$with_gdal" -a "$with_gdal" != "no" ; then ++ ++ GDAL_CONFIG=$with_gdal ++ ++ if test -f "$GDAL_CONFIG" -a -x "$GDAL_CONFIG" ; then ++ { echo "$as_me:$LINENO: result: user supplied gdal-config ($GDAL_CONFIG)" >&5 ++echo "${ECHO_T}user supplied gdal-config ($GDAL_CONFIG)" >&6; } ++ else ++ { { echo "$as_me:$LINENO: error: '$GDAL_CONFIG' is not an executable. Make sure you use --with-gdal=/path/to/gdal-config" >&5 ++echo "$as_me: error: '$GDAL_CONFIG' is not an executable. Make sure you use --with-gdal=/path/to/gdal-config" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++else ++ ++ { { echo "$as_me:$LINENO: error: gdal required to build GDAL ECW 3.3 driver" >&5 ++echo "$as_me: error: gdal required to build GDAL ECW 3.3 driver" >&2;} ++ { (exit 1); exit 1; }; } ++ ++fi ++ ++LIBS="`$GDAL_CONFIG --libs` $LIBS" ++GDAL_INC=`$GDAL_CONFIG --cflags` ++ ++GDAL_INC=$GDAL_INC ++ ++ ++ ++# Check whether --with-autoload was given. ++if test "${with_autoload+set}" = set; then ++ withval=$with_autoload; ++fi ++ ++ ++if test "$with_autoload" != "" ; then ++ AUTOLOAD_DIR=$with_autoload ++else ++ if $GDAL_CONFIG --autoload > /dev/null 2>&1 ; then ++ AUTOLOAD_DIR=`$GDAL_CONFIG --autoload` ++ else ++ AUTOLOAD_DIR=`$GDAL_CONFIG --prefix`/lib/gdalplugins ++ fi ++fi ++ ++{ echo "$as_me:$LINENO: result: using $AUTOLOAD_DIR as GDAL shared library autoload directory" >&5 ++echo "${ECHO_T}using $AUTOLOAD_DIR as GDAL shared library autoload directory" >&6; } ++AUTOLOAD_DIR=$AUTOLOAD_DIR ++ ++ ++ ++ECW_SETTING=no ++ECW_INCLUDE= ++export ECW_INCLUDE ECW_SETTING ++ ++ ++# Check whether --with-ecw was given. ++if test "${with_ecw+set}" = set; then ++ withval=$with_ecw; ++fi ++ ++ ++if test ! -z "`uname | grep Darwin`" ; then ++ CARBON_FRAMEWORK="-framework Carbon" ++else ++ CARBON_FRAMEWORK= ++fi ++ ++if test "$with_ecw" = "no" ; then ++ { { echo "$as_me:$LINENO: error: ECW required for this driver, please install ECW 3.3+ and rebuild" >&5 ++echo "$as_me: error: ECW required for this driver, please install ECW 3.3+ and rebuild" >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++if test "$with_ecw" = "yes" -o "$with_ecw" = "" ; then ++ ++ ++{ echo "$as_me:$LINENO: checking for NCScbmOpenFileView in -lNCSEcw" >&5 ++echo $ECHO_N "checking for NCScbmOpenFileView in -lNCSEcw... $ECHO_C" >&6; } ++if test "${ac_cv_lib_NCSEcw_NCScbmOpenFileView+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lNCSEcw -lNCSCnet -lNCSUtil $LIBS" ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char NCScbmOpenFileView (); ++int ++main () ++{ ++return NCScbmOpenFileView (); ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ ac_cv_lib_NCSEcw_NCScbmOpenFileView=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_lib_NCSEcw_NCScbmOpenFileView=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_NCSEcw_NCScbmOpenFileView" >&5 ++echo "${ECHO_T}$ac_cv_lib_NCSEcw_NCScbmOpenFileView" >&6; } ++if test $ac_cv_lib_NCSEcw_NCScbmOpenFileView = yes; then ++ ECW_SETTING=yes ++else ++ ECW_SETTING=no ++fi ++ ++ ++ if test "$ECW_SETTING" = "yes" ; then ++ LIBS="-lNCSEcw -lNCSCnet -lNCSUtil $LIBS" ++ fi ++ ++ if test "$ECW_SETTING" = "no" ; then ++ { echo "$as_me:$LINENO: checking for NCScbmOpenFileView in -lecwj2" >&5 ++echo $ECHO_N "checking for NCScbmOpenFileView in -lecwj2... $ECHO_C" >&6; } ++if test "${ac_cv_lib_ecwj2_NCScbmOpenFileView+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lecwj2 $CARBON_FRAMEWORK $LIBS" ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char NCScbmOpenFileView (); ++int ++main () ++{ ++return NCScbmOpenFileView (); ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ ac_cv_lib_ecwj2_NCScbmOpenFileView=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_lib_ecwj2_NCScbmOpenFileView=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_ecwj2_NCScbmOpenFileView" >&5 ++echo "${ECHO_T}$ac_cv_lib_ecwj2_NCScbmOpenFileView" >&6; } ++if test $ac_cv_lib_ecwj2_NCScbmOpenFileView = yes; then ++ ECW_SETTING=yes ++else ++ ECW_SETTING=no ++fi ++ ++ if test "$ECW_SETTING" = "yes" ; then ++ LIBS="-lecwj2 $CARBON_FRAMEWORK $LIBS" ++ fi ++ fi ++ ++else ++ ++ { echo "$as_me:$LINENO: checking for libNCSEcw.so or libecwj2" >&5 ++echo $ECHO_N "checking for libNCSEcw.so or libecwj2... $ECHO_C" >&6; } ++ ECW_SETTING=yes ++ if test -r $with_ecw/lib/libNCSCnet.so -o -r $with_ecw/lib/libNCSCnet.dylib ; then ++ LIBS="-L$with_ecw/lib -lNCSEcw -lNCSCnet -lNCSUtil $LIBS" ++ { echo "$as_me:$LINENO: result: found in $with_ecw/lib." >&5 ++echo "${ECHO_T}found in $with_ecw/lib." >&6; } ++ elif test -r $with_ecw/lib/libNCSCNet.so -o -r $with_ecw/lib/libNCSCNet.dylib ; then ++ LIBS="-L$with_ecw/lib -lNCSEcw -lNCSCNet -lNCSUtil $LIBS" ++ { echo "$as_me:$LINENO: result: found in $with_ecw/lib." >&5 ++echo "${ECHO_T}found in $with_ecw/lib." >&6; } ++ elif test -r $with_ecw/bin/libNCSEcw.so -o -r $with_ecw/bin/libNCSEcw.dylib ; then ++ LIBS="-L$with_ecw/bin -lNCSEcw -lNCSEcw -lNCSCnet $LIBS" ++ { echo "$as_me:$LINENO: result: found in $with_ecw/bin." >&5 ++echo "${ECHO_T}found in $with_ecw/bin." >&6; } ++ elif test -r $with_ecw/lib/libecwj2.dylib ; then ++ LIBS="-L$with_ecw/lib -lecwj2 $CARBON_FRAMEWORK $LIBS" ++ { echo "$as_me:$LINENO: result: found libecwj2 in $with_ecw/lib." >&5 ++echo "${ECHO_T}found libecwj2 in $with_ecw/lib." >&6; } ++ else ++ { { echo "$as_me:$LINENO: error: not found in $with_ecw/lib or $with_ecw/bin." >&5 ++echo "$as_me: error: not found in $with_ecw/lib or $with_ecw/bin." >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++ { echo "$as_me:$LINENO: checking for NCSECWClient.h in $with_ecw/include" >&5 ++echo $ECHO_N "checking for NCSECWClient.h in $with_ecw/include... $ECHO_C" >&6; } ++ if test -r $with_ecw/include/NCSECWClient.h ; then ++ { echo "$as_me:$LINENO: result: found." >&5 ++echo "${ECHO_T}found." >&6; } ++ ECW_INCLUDE="-I$with_ecw/include" ++ else ++ { { echo "$as_me:$LINENO: error: not found." >&5 ++echo "$as_me: error: not found." >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++fi ++ ++ECW_INCLUDE=$ECW_INCLUDE ++ ++ECW_SETTING=$ECW_SETTING ++ ++ ++ ++rm -f conftest* ++ ++ac_config_files="$ac_config_files Makefile" ++ ++ ++ ++test "x$prefix" = xNONE && prefix=$ac_default_prefix ++# Let make expand exec_prefix. ++test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' ++ ++# Transform confdefs.h into DEFS. ++# Protect against shell expansion while executing Makefile rules. ++# Protect against Makefile macro expansion. ++# ++# If the first sed substitution is executed (which looks for macros that ++# take arguments), then branch to the quote section. Otherwise, ++# look for a macro that doesn't take arguments. ++ac_script=' ++t clear ++:clear ++s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g ++t quote ++s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g ++t quote ++b any ++:quote ++s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g ++s/\[/\\&/g ++s/\]/\\&/g ++s/\$/$$/g ++H ++:any ++${ ++ g ++ s/^\n// ++ s/\n/ /g ++ p ++} ++' ++DEFS=`sed -n "$ac_script" confdefs.h` ++ ++ ++ac_libobjs= ++ac_ltlibobjs= ++for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue ++ # 1. Remove the extension, and $U if already installed. ++ ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ++ ac_i=`echo "$ac_i" | sed "$ac_script"` ++ # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR ++ # will be set to the directory where LIBOBJS objects are built. ++ ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ++ ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' ++done ++LIBOBJS=$ac_libobjs ++ ++LTLIBOBJS=$ac_ltlibobjs ++ ++ ++ ++: ${CONFIG_STATUS=./config.status} ++ac_clean_files_save=$ac_clean_files ++ac_clean_files="$ac_clean_files $CONFIG_STATUS" ++{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 ++echo "$as_me: creating $CONFIG_STATUS" >&6;} ++cat >$CONFIG_STATUS <<_ACEOF ++#! $SHELL ++# Generated by $as_me. ++# Run this file to recreate the current configuration. ++# Compiler output produced by configure, useful for debugging ++# configure, is in config.log if it exists. ++ ++debug=false ++ac_cs_recheck=false ++ac_cs_silent=false ++SHELL=\${CONFIG_SHELL-$SHELL} ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++## --------------------- ## ++## M4sh Initialization. ## ++## --------------------- ## ++ ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++ ++ ++# PATH needs CR ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits ++ ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: ++ fi ++ rm -f conf$$.sh ++fi ++ ++# Support unset when possible. ++if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then ++ as_unset=unset ++else ++ as_unset=false ++fi ++ ++ ++# IFS ++# We need space, tab and new line, in precisely that order. Quoting is ++# there to prevent editors from complaining about space-tab. ++# (If _AS_PATH_WALK were called with IFS unset, it would disable word ++# splitting by setting IFS to empty value.) ++as_nl=' ++' ++IFS=" "" $as_nl" ++ ++# Find who we are. Look in the path if we contain no directory separator. ++case $0 in ++ *[\\/]* ) as_myself=$0 ;; ++ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++# We did not find ourselves, most probably we were run as `sh COMMAND' ++# in which case we are not to be found in the path. ++if test "x$as_myself" = x; then ++ as_myself=$0 ++fi ++if test ! -f "$as_myself"; then ++ echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ { (exit 1); exit 1; } ++fi ++ ++# Work around bugs in pre-3.0 UWIN ksh. ++for as_var in ENV MAIL MAILPATH ++do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++done ++PS1='$ ' ++PS2='> ' ++PS4='+ ' ++ ++# NLS nuisances. ++for as_var in \ ++ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ++ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ++ LC_TELEPHONE LC_TIME ++do ++ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ++ eval $as_var=C; export $as_var ++ else ++ ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ fi ++done ++ ++# Required to use basename. ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ++ as_basename=basename ++else ++ as_basename=false ++fi ++ ++ ++# Name of the executable. ++as_me=`$as_basename -- "$0" || ++$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ ++# CDPATH. ++$as_unset CDPATH ++ ++ ++ ++ as_lineno_1=$LINENO ++ as_lineno_2=$LINENO ++ test "x$as_lineno_1" != "x$as_lineno_2" && ++ test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { ++ ++ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO ++ # uniformly replaced by the line number. The first 'sed' inserts a ++ # line-number line after each line using $LINENO; the second 'sed' ++ # does the real work. The second script uses 'N' to pair each ++ # line-number line with the line containing $LINENO, and appends ++ # trailing '-' during substitution so that $LINENO is not a special ++ # case at line end. ++ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ++ # scripts with optimization help from Paolo Bonzini. Blame Lee ++ # E. McMahon (1931-1989) for sed's syntax. :-) ++ sed -n ' ++ p ++ /[$]LINENO/= ++ ' <$as_myself | ++ sed ' ++ s/[$]LINENO.*/&-/ ++ t lineno ++ b ++ :lineno ++ N ++ :loop ++ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ ++ t loop ++ s/-\n.*// ++ ' >$as_me.lineno && ++ chmod +x "$as_me.lineno" || ++ { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { (exit 1); exit 1; }; } ++ ++ # Don't try to exec as it changes $[0], causing all sort of problems ++ # (the dirname of $[0] is not the place where we might find the ++ # original and so on. Autoconf is especially sensitive to this). ++ . "./$as_me.lineno" ++ # Exit status is that of the last command. ++ exit ++} ++ ++ ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi ++ ++ECHO_C= ECHO_N= ECHO_T= ++case `echo -n x` in ++-n*) ++ case `echo 'x\c'` in ++ *c*) ECHO_T=' ';; # ECHO_T is single tab character. ++ *) ECHO_C='\c';; ++ esac;; ++*) ++ ECHO_N='-n';; ++esac ++ ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++rm -f conf$$ conf$$.exe conf$$.file ++if test -d conf$$.dir; then ++ rm -f conf$$.dir/conf$$.file ++else ++ rm -f conf$$.dir ++ mkdir conf$$.dir ++fi ++echo >conf$$.file ++if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -p' ++elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++else ++ as_ln_s='cp -p' ++fi ++rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file ++rmdir conf$$.dir 2>/dev/null ++ ++if mkdir -p . 2>/dev/null; then ++ as_mkdir_p=: ++else ++ test -d ./-p && rmdir ./-p ++ as_mkdir_p=false ++fi ++ ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' ++else ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' ++fi ++as_executable_p=$as_test_x ++ ++# Sed expression to map a string onto a valid CPP name. ++as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" ++ ++# Sed expression to map a string onto a valid variable name. ++as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" ++ ++ ++exec 6>&1 ++ ++# Save the log message, to keep $[0] and so on meaningful, and to ++# report actual input values of CONFIG_FILES etc. instead of their ++# values after options handling. ++ac_log=" ++This file was extended by $as_me, which was ++generated by GNU Autoconf 2.61. Invocation command line was ++ ++ CONFIG_FILES = $CONFIG_FILES ++ CONFIG_HEADERS = $CONFIG_HEADERS ++ CONFIG_LINKS = $CONFIG_LINKS ++ CONFIG_COMMANDS = $CONFIG_COMMANDS ++ $ $0 $@ ++ ++on `(hostname || uname -n) 2>/dev/null | sed 1q` ++" ++ ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<_ACEOF ++# Files that config.status was made for. ++config_files="$ac_config_files" ++ ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++ac_cs_usage="\ ++\`$as_me' instantiates files from templates according to the ++current configuration. ++ ++Usage: $0 [OPTIONS] [FILE]... ++ ++ -h, --help print this help, then exit ++ -V, --version print version number and configuration settings, then exit ++ -q, --quiet do not print progress messages ++ -d, --debug don't remove temporary files ++ --recheck update $as_me by reconfiguring in the same conditions ++ --file=FILE[:TEMPLATE] ++ instantiate the configuration file FILE ++ ++Configuration files: ++$config_files ++ ++Report bugs to ." ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++ac_cs_version="\\ ++config.status ++configured by $0, generated by GNU Autoconf 2.61, ++ with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" ++ ++Copyright (C) 2006 Free Software Foundation, Inc. ++This config.status script is free software; the Free Software Foundation ++gives unlimited permission to copy, distribute and modify it." ++ ++ac_pwd='$ac_pwd' ++srcdir='$srcdir' ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++# If no file are specified by the user, then we need to provide default ++# value. By we need to know if files were specified by the user. ++ac_need_defaults=: ++while test $# != 0 ++do ++ case $1 in ++ --*=*) ++ ac_option=`expr "X$1" : 'X\([^=]*\)='` ++ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ++ ac_shift=: ++ ;; ++ *) ++ ac_option=$1 ++ ac_optarg=$2 ++ ac_shift=shift ++ ;; ++ esac ++ ++ case $ac_option in ++ # Handling of the options. ++ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ++ ac_cs_recheck=: ;; ++ --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) ++ echo "$ac_cs_version"; exit ;; ++ --debug | --debu | --deb | --de | --d | -d ) ++ debug=: ;; ++ --file | --fil | --fi | --f ) ++ $ac_shift ++ CONFIG_FILES="$CONFIG_FILES $ac_optarg" ++ ac_need_defaults=false;; ++ --he | --h | --help | --hel | -h ) ++ echo "$ac_cs_usage"; exit ;; ++ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ ++ | -silent | --silent | --silen | --sile | --sil | --si | --s) ++ ac_cs_silent=: ;; ++ ++ # This is an error. ++ -*) { echo "$as_me: error: unrecognized option: $1 ++Try \`$0 --help' for more information." >&2 ++ { (exit 1); exit 1; }; } ;; ++ ++ *) ac_config_targets="$ac_config_targets $1" ++ ac_need_defaults=false ;; ++ ++ esac ++ shift ++done ++ ++ac_configure_extra_args= ++ ++if $ac_cs_silent; then ++ exec 6>/dev/null ++ ac_configure_extra_args="$ac_configure_extra_args --silent" ++fi ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++if \$ac_cs_recheck; then ++ echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 ++ CONFIG_SHELL=$SHELL ++ export CONFIG_SHELL ++ exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion ++fi ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF ++exec 5>>config.log ++{ ++ echo ++ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ++## Running $as_me. ## ++_ASBOX ++ echo "$ac_log" ++} >&5 ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++ ++# Handling of arguments. ++for ac_config_target in $ac_config_targets ++do ++ case $ac_config_target in ++ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; ++ ++ *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 ++echo "$as_me: error: invalid argument: $ac_config_target" >&2;} ++ { (exit 1); exit 1; }; };; ++ esac ++done ++ ++ ++# If the user did not use the arguments to specify the items to instantiate, ++# then the envvar interface is used. Set only those that are not. ++# We use the long form for the default assignment because of an extremely ++# bizarre bug on SunOS 4.1.3. ++if $ac_need_defaults; then ++ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files ++fi ++ ++# Have a temporary directory for convenience. Make it in the build tree ++# simply because there is no reason against having it here, and in addition, ++# creating and moving files from /tmp can sometimes cause problems. ++# Hook for its removal unless debugging. ++# Note that there is a small window in which the directory will not be cleaned: ++# after its creation but before its name has been assigned to `$tmp'. ++$debug || ++{ ++ tmp= ++ trap 'exit_status=$? ++ { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ++' 0 ++ trap '{ (exit 1); exit 1; }' 1 2 13 15 ++} ++# Create a (secure) tmp directory for tmp files. ++ ++{ ++ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && ++ test -n "$tmp" && test -d "$tmp" ++} || ++{ ++ tmp=./conf$$-$RANDOM ++ (umask 077 && mkdir "$tmp") ++} || ++{ ++ echo "$me: cannot create a temporary directory in ." >&2 ++ { (exit 1); exit 1; } ++} ++ ++# ++# Set up the sed scripts for CONFIG_FILES section. ++# ++ ++# No need to generate the scripts if there are no CONFIG_FILES. ++# This happens for instance when ./config.status config.h ++if test -n "$CONFIG_FILES"; then ++ ++_ACEOF ++ ++ ++ ++ac_delim='%!_!# ' ++for ac_last_try in false false false false false :; do ++ cat >conf$$subs.sed <<_ACEOF ++SHELL!$SHELL$ac_delim ++PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim ++PACKAGE_NAME!$PACKAGE_NAME$ac_delim ++PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim ++PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim ++PACKAGE_STRING!$PACKAGE_STRING$ac_delim ++PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim ++exec_prefix!$exec_prefix$ac_delim ++prefix!$prefix$ac_delim ++program_transform_name!$program_transform_name$ac_delim ++bindir!$bindir$ac_delim ++sbindir!$sbindir$ac_delim ++libexecdir!$libexecdir$ac_delim ++datarootdir!$datarootdir$ac_delim ++datadir!$datadir$ac_delim ++sysconfdir!$sysconfdir$ac_delim ++sharedstatedir!$sharedstatedir$ac_delim ++localstatedir!$localstatedir$ac_delim ++includedir!$includedir$ac_delim ++oldincludedir!$oldincludedir$ac_delim ++docdir!$docdir$ac_delim ++infodir!$infodir$ac_delim ++htmldir!$htmldir$ac_delim ++dvidir!$dvidir$ac_delim ++pdfdir!$pdfdir$ac_delim ++psdir!$psdir$ac_delim ++libdir!$libdir$ac_delim ++localedir!$localedir$ac_delim ++mandir!$mandir$ac_delim ++DEFS!$DEFS$ac_delim ++ECHO_C!$ECHO_C$ac_delim ++ECHO_N!$ECHO_N$ac_delim ++ECHO_T!$ECHO_T$ac_delim ++LIBS!$LIBS$ac_delim ++build_alias!$build_alias$ac_delim ++host_alias!$host_alias$ac_delim ++target_alias!$target_alias$ac_delim ++CC!$CC$ac_delim ++CFLAGS!$CFLAGS$ac_delim ++LDFLAGS!$LDFLAGS$ac_delim ++CPPFLAGS!$CPPFLAGS$ac_delim ++ac_ct_CC!$ac_ct_CC$ac_delim ++EXEEXT!$EXEEXT$ac_delim ++OBJEXT!$OBJEXT$ac_delim ++CXX!$CXX$ac_delim ++CXXFLAGS!$CXXFLAGS$ac_delim ++ac_ct_CXX!$ac_ct_CXX$ac_delim ++RANLIB!$RANLIB$ac_delim ++CXX_PIC!$CXX_PIC$ac_delim ++C_PIC!$C_PIC$ac_delim ++LD_SHARED!$LD_SHARED$ac_delim ++SO_EXT!$SO_EXT$ac_delim ++CXX_WFLAGS!$CXX_WFLAGS$ac_delim ++C_WFLAGS!$C_WFLAGS$ac_delim ++GDAL_CONFIG!$GDAL_CONFIG$ac_delim ++GDAL_INC!$GDAL_INC$ac_delim ++AUTOLOAD_DIR!$AUTOLOAD_DIR$ac_delim ++ECW_INCLUDE!$ECW_INCLUDE$ac_delim ++ECW_SETTING!$ECW_SETTING$ac_delim ++LIBOBJS!$LIBOBJS$ac_delim ++LTLIBOBJS!$LTLIBOBJS$ac_delim ++_ACEOF ++ ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 61; then ++ break ++ elif $ac_last_try; then ++ { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++ { (exit 1); exit 1; }; } ++ else ++ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " ++ fi ++done ++ ++ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ++if test -n "$ac_eof"; then ++ ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ++ ac_eof=`expr $ac_eof + 1` ++fi ++ ++cat >>$CONFIG_STATUS <<_ACEOF ++cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof ++/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end ++_ACEOF ++sed ' ++s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g ++s/^/s,@/; s/!/@,|#_!!_#|/ ++:n ++t n ++s/'"$ac_delim"'$/,g/; t ++s/$/\\/; p ++N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ++' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF ++:end ++s/|#_!!_#|//g ++CEOF$ac_eof ++_ACEOF ++ ++ ++# VPATH may cause trouble with some makes, so we remove $(srcdir), ++# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and ++# trailing colons and then remove the whole line if VPATH becomes empty ++# (actually we leave an empty line to preserve line numbers). ++if test "x$srcdir" = x.; then ++ ac_vpsub='/^[ ]*VPATH[ ]*=/{ ++s/:*\$(srcdir):*/:/ ++s/:*\${srcdir}:*/:/ ++s/:*@srcdir@:*/:/ ++s/^\([^=]*=[ ]*\):*/\1/ ++s/:*$// ++s/^[^=]*=[ ]*$// ++}' ++fi ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++fi # test -n "$CONFIG_FILES" ++ ++ ++for ac_tag in :F $CONFIG_FILES ++do ++ case $ac_tag in ++ :[FHLC]) ac_mode=$ac_tag; continue;; ++ esac ++ case $ac_mode$ac_tag in ++ :[FHL]*:*);; ++ :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 ++echo "$as_me: error: Invalid tag $ac_tag." >&2;} ++ { (exit 1); exit 1; }; };; ++ :[FH]-) ac_tag=-:-;; ++ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; ++ esac ++ ac_save_IFS=$IFS ++ IFS=: ++ set x $ac_tag ++ IFS=$ac_save_IFS ++ shift ++ ac_file=$1 ++ shift ++ ++ case $ac_mode in ++ :L) ac_source=$1;; ++ :[FH]) ++ ac_file_inputs= ++ for ac_f ++ do ++ case $ac_f in ++ -) ac_f="$tmp/stdin";; ++ *) # Look for the file first in the build tree, then in the source tree ++ # (if the path is not absolute). The absolute path cannot be DOS-style, ++ # because $ac_f cannot contain `:'. ++ test -f "$ac_f" || ++ case $ac_f in ++ [\\/$]*) false;; ++ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; ++ esac || ++ { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 ++echo "$as_me: error: cannot find input file: $ac_f" >&2;} ++ { (exit 1); exit 1; }; };; ++ esac ++ ac_file_inputs="$ac_file_inputs $ac_f" ++ done ++ ++ # Let's still pretend it is `configure' which instantiates (i.e., don't ++ # use $as_me), people would be surprised to read: ++ # /* config.h. Generated by config.status. */ ++ configure_input="Generated from "`IFS=: ++ echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." ++ if test x"$ac_file" != x-; then ++ configure_input="$ac_file. $configure_input" ++ { echo "$as_me:$LINENO: creating $ac_file" >&5 ++echo "$as_me: creating $ac_file" >&6;} ++ fi ++ ++ case $ac_tag in ++ *:-:* | *:-) cat >"$tmp/stdin";; ++ esac ++ ;; ++ esac ++ ++ ac_dir=`$as_dirname -- "$ac_file" || ++$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$ac_file" : 'X\(//\)[^/]' \| \ ++ X"$ac_file" : 'X\(//\)$' \| \ ++ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || ++echo X"$ac_file" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ { as_dir="$ac_dir" ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 ++echo "$as_me: error: cannot create directory $as_dir" >&2;} ++ { (exit 1); exit 1; }; }; } ++ ac_builddir=. ++ ++case "$ac_dir" in ++.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; ++*) ++ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ # A ".." for each directory in $ac_dir_suffix. ++ ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ case $ac_top_builddir_sub in ++ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; ++ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; ++ esac ;; ++esac ++ac_abs_top_builddir=$ac_pwd ++ac_abs_builddir=$ac_pwd$ac_dir_suffix ++# for backward compatibility: ++ac_top_builddir=$ac_top_build_prefix ++ ++case $srcdir in ++ .) # We are building in place. ++ ac_srcdir=. ++ ac_top_srcdir=$ac_top_builddir_sub ++ ac_abs_top_srcdir=$ac_pwd ;; ++ [\\/]* | ?:[\\/]* ) # Absolute name. ++ ac_srcdir=$srcdir$ac_dir_suffix; ++ ac_top_srcdir=$srcdir ++ ac_abs_top_srcdir=$srcdir ;; ++ *) # Relative name. ++ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ++ ac_top_srcdir=$ac_top_build_prefix$srcdir ++ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; ++esac ++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix ++ ++ ++ case $ac_mode in ++ :F) ++ # ++ # CONFIG_FILE ++ # ++ ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++# If the template does not know about datarootdir, expand it. ++# FIXME: This hack should be removed a few years after 2.60. ++ac_datarootdir_hack=; ac_datarootdir_seen= ++ ++case `sed -n '/datarootdir/ { ++ p ++ q ++} ++/@datadir@/p ++/@docdir@/p ++/@infodir@/p ++/@localedir@/p ++/@mandir@/p ++' $ac_file_inputs` in ++*datarootdir*) ac_datarootdir_seen=yes;; ++*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) ++ { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ++echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++ ac_datarootdir_hack=' ++ s&@datadir@&$datadir&g ++ s&@docdir@&$docdir&g ++ s&@infodir@&$infodir&g ++ s&@localedir@&$localedir&g ++ s&@mandir@&$mandir&g ++ s&\\\${datarootdir}&$datarootdir&g' ;; ++esac ++_ACEOF ++ ++# Neutralize VPATH when `$srcdir' = `.'. ++# Shell code in configure.ac might set extrasub. ++# FIXME: do we really want to maintain this feature? ++cat >>$CONFIG_STATUS <<_ACEOF ++ sed "$ac_vpsub ++$extrasub ++_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF ++:t ++/@[a-zA-Z_][a-zA-Z_0-9]*@/!b ++s&@configure_input@&$configure_input&;t t ++s&@top_builddir@&$ac_top_builddir_sub&;t t ++s&@srcdir@&$ac_srcdir&;t t ++s&@abs_srcdir@&$ac_abs_srcdir&;t t ++s&@top_srcdir@&$ac_top_srcdir&;t t ++s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t ++s&@builddir@&$ac_builddir&;t t ++s&@abs_builddir@&$ac_abs_builddir&;t t ++s&@abs_top_builddir@&$ac_abs_top_builddir&;t t ++$ac_datarootdir_hack ++" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out ++ ++test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && ++ { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && ++ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && ++ { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined." >&5 ++echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined." >&2;} ++ ++ rm -f "$tmp/stdin" ++ case $ac_file in ++ -) cat "$tmp/out"; rm -f "$tmp/out";; ++ *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; ++ esac ++ ;; ++ ++ ++ ++ esac ++ ++done # for ac_tag ++ ++ ++{ (exit 0); exit 0; } ++_ACEOF ++chmod +x $CONFIG_STATUS ++ac_clean_files=$ac_clean_files_save ++ ++ ++# configure is writing to config.log, and then calls config.status. ++# config.status does its own redirection, appending to config.log. ++# Unfortunately, on DOS this fails, as config.log is still kept open ++# by configure, so config.status won't be able to write to it; its ++# output is simply discarded. So we exec the FD to /dev/null, ++# effectively closing config.log, so it can be properly (re)opened and ++# appended to by config.status. When coming back to configure, we ++# need to make the FD available again. ++if test "$no_create" != yes; then ++ ac_cs_success=: ++ ac_config_status_args= ++ test "$silent" = yes && ++ ac_config_status_args="$ac_config_status_args --quiet" ++ exec 5>/dev/null ++ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false ++ exec 5>>config.log ++ # Use ||, not &&, to avoid exiting from the if with $? = 1, which ++ # would make configure fail if this is the last instruction. ++ $ac_cs_success || { (exit 1); exit 1; } ++fi ++ ++ ++ ++ +--- /dev/null ++++ b/frmts/ecw/pkg/configure.in +@@ -0,0 +1,186 @@ ++dnl *************************************************************************** ++dnl $Id: configure.in 9971 2006-08-23 20:06:02Z fwarmerdam $ ++dnl ++dnl Project: GDAL ECW Plugin ++dnl Purpose: Configure source file. ++dnl Author: Frank Warmerdam, warmerdam@pobox.com ++dnl Changed by: Francesco P Lovergine, frankie@debian.org on the basis of ++dnl GDAL GRASS Plugin ++dnl ++dnl *************************************************************************** ++dnl Copyright (c) 2005, Frank Warmerdam ++dnl Copyright (c) 2008, Francesco P Lovergine ++dnl ++dnl Permission is hereby granted, free of charge, to any person obtaining a ++dnl copy of this software and associated documentation files (the "Software"), ++dnl to deal in the Software without restriction, including without limitation ++dnl the rights to use, copy, modify, merge, publish, distribute, sublicense, ++dnl and/or sell copies of the Software, and to permit persons to whom the ++dnl Software is furnished to do so, subject to the following conditions: ++dnl ++dnl The above copyright notice and this permission notice shall be included ++dnl in all copies or substantial portions of the Software. ++dnl ++dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ++dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ++dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL ++dnl THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ++dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING ++dnl FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER ++dnl DEALINGS IN THE SOFTWARE. ++dnl *************************************************************************** ++ ++dnl Disable configure caching ... it causes lots of hassles. ++define([AC_CACHE_LOAD], ) ++define([AC_CACHE_SAVE], ) ++ ++dnl Process this file with autoconf to produce a configure script. ++AC_INIT(Makefile.in) ++ ++dnl We require autoconf 2.52+ for libtool support on cygwin/mingw hosts ++AC_PREREQ(2.52) ++ ++dnl Checks for programs. ++AC_PROG_CC ++AC_PROG_CXX ++ ++AC_PROG_RANLIB ++AC_COMPILER_PIC ++AC_LD_SHARED ++AC_COMPILER_WFLAGS ++ ++dnl --------------------------------------------------------------------------- ++dnl Find GDAL ++dnl --------------------------------------------------------------------------- ++ ++AC_ARG_WITH(gdal, ++[ --with-gdal[=PATH] GDAL (PATH is path to gdal-config)],,) ++ ++if test "$with_gdal" = "yes" -o "$with_gdal" = "" ; then ++ ++ if test "`basename xx/$with_gdal`" = "gdal-config" ; then ++ GDAL_CONFIG="$with_gdal" ++ fi ++ ++ if test -z "$GDAL_CONFIG" ; then ++ AC_PATH_PROG(GDAL_CONFIG, gdal-config, no) ++ fi ++ ++ if test "$GDAL_CONFIG" = "no" ; then ++ AC_MSG_ERROR([couldn't find gdal-config]) ++ fi ++ ++elif test -n "$with_gdal" -a "$with_gdal" != "no" ; then ++ ++ GDAL_CONFIG=$with_gdal ++ ++ if test -f "$GDAL_CONFIG" -a -x "$GDAL_CONFIG" ; then ++ AC_MSG_RESULT([user supplied gdal-config ($GDAL_CONFIG)]) ++ else ++ AC_MSG_ERROR(['$GDAL_CONFIG' is not an executable. Make sure you use --with-gdal=/path/to/gdal-config]) ++ fi ++ ++else ++ ++ AC_MSG_ERROR([gdal required to build GDAL ECW 3.3 driver]) ++ ++fi ++ ++LIBS="`$GDAL_CONFIG --libs` $LIBS" ++GDAL_INC=`$GDAL_CONFIG --cflags` ++ ++AC_SUBST(GDAL_INC, $GDAL_INC) ++ ++dnl --------------------------------------------------------------------------- ++dnl Where to put driver? ++dnl --------------------------------------------------------------------------- ++AC_ARG_WITH(autoload,[ --with-autoload[=DIR] Directory for autoload drivers],,) ++ ++if test "$with_autoload" != "" ; then ++ AUTOLOAD_DIR=$with_autoload ++else ++ if $GDAL_CONFIG --autoload > /dev/null 2>&1 ; then ++ AUTOLOAD_DIR=`$GDAL_CONFIG --autoload` ++ else ++ AUTOLOAD_DIR=`$GDAL_CONFIG --prefix`/lib/gdalplugins ++ fi ++fi ++ ++AC_MSG_RESULT(using $AUTOLOAD_DIR as GDAL shared library autoload directory) ++AC_SUBST(AUTOLOAD_DIR,$AUTOLOAD_DIR) ++ ++dnl --------------------------------------------------------------------------- ++dnl Find ECW stuff ++dnl --------------------------------------------------------------------------- ++ ++ECW_SETTING=no ++ECW_INCLUDE= ++export ECW_INCLUDE ECW_SETTING ++ ++AC_ARG_WITH(ecw,[ --with-ecw[=ARG] Include ECW support (ARG=ECW SDK Path)],,) ++ ++if test ! -z "`uname | grep Darwin`" ; then ++ CARBON_FRAMEWORK="-framework Carbon" ++else ++ CARBON_FRAMEWORK= ++fi ++ ++if test "$with_ecw" = "no" ; then ++ AC_MSG_ERROR([ECW required for this driver, please install ECW 3.3+ and rebuild]) ++fi ++ ++if test "$with_ecw" = "yes" -o "$with_ecw" = "" ; then ++ ++ AC_CHECK_LIB(NCSEcw,NCScbmOpenFileView,ECW_SETTING=yes,ECW_SETTING=no,-lNCSCnet -lNCSUtil) ++ ++ if test "$ECW_SETTING" = "yes" ; then ++ LIBS="-lNCSEcw -lNCSCnet -lNCSUtil $LIBS" ++ fi ++ ++ if test "$ECW_SETTING" = "no" ; then ++ AC_CHECK_LIB(ecwj2,NCScbmOpenFileView,ECW_SETTING=yes,ECW_SETTING=no,$CARBON_FRAMEWORK) ++ if test "$ECW_SETTING" = "yes" ; then ++ LIBS="-lecwj2 $CARBON_FRAMEWORK $LIBS" ++ fi ++ fi ++ ++else ++ ++ AC_MSG_CHECKING([for libNCSEcw.so or libecwj2]) ++ ECW_SETTING=yes ++ if test -r $with_ecw/lib/libNCSCnet.so -o -r $with_ecw/lib/libNCSCnet.dylib ; then ++ LIBS="-L$with_ecw/lib -lNCSEcw -lNCSCnet -lNCSUtil $LIBS" ++ AC_MSG_RESULT([found in $with_ecw/lib.]) ++ elif test -r $with_ecw/lib/libNCSCNet.so -o -r $with_ecw/lib/libNCSCNet.dylib ; then ++ LIBS="-L$with_ecw/lib -lNCSEcw -lNCSCNet -lNCSUtil $LIBS" ++ AC_MSG_RESULT([found in $with_ecw/lib.]) ++ elif test -r $with_ecw/bin/libNCSEcw.so -o -r $with_ecw/bin/libNCSEcw.dylib ; then ++ LIBS="-L$with_ecw/bin -lNCSEcw -lNCSEcw -lNCSCnet $LIBS" ++ AC_MSG_RESULT([found in $with_ecw/bin.]) ++ elif test -r $with_ecw/lib/libecwj2.dylib ; then ++ LIBS="-L$with_ecw/lib -lecwj2 $CARBON_FRAMEWORK $LIBS" ++ AC_MSG_RESULT([found libecwj2 in $with_ecw/lib.]) ++ else ++ AC_MSG_ERROR([not found in $with_ecw/lib or $with_ecw/bin.]) ++ fi ++ ++ AC_MSG_CHECKING([for NCSECWClient.h in $with_ecw/include]) ++ if test -r $with_ecw/include/NCSECWClient.h ; then ++ AC_MSG_RESULT([found.]) ++ ECW_INCLUDE="-I$with_ecw/include" ++ else ++ AC_MSG_ERROR([not found.]) ++ fi ++fi ++ ++AC_SUBST(ECW_INCLUDE,$ECW_INCLUDE) ++AC_SUBST(ECW_SETTING,$ECW_SETTING) ++ ++dnl --------------------------------------------------------------------------- ++ ++rm -f conftest* ++ ++AC_OUTPUT(Makefile) ++ ++ ++ diff --git a/gdal/debian/patches/gdal-grass b/gdal/debian/patches/gdal-grass new file mode 100644 index 000000000000..0693c706c152 --- /dev/null +++ b/gdal/debian/patches/gdal-grass @@ -0,0 +1,29 @@ +Description: Add support for building the libgdal-grass plugin. +Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=544978 +Author: Francesco Paolo Lovergine +Last-Update: 2009-09-08 +Forwarded: not-needed + +--- a/frmts/grass/GNUmakefile ++++ b/frmts/grass/GNUmakefile +@@ -21,11 +21,13 @@ clean: + install-obj: $(O_OBJ:.o=.$(OBJ_EXT)) + + dist: +- cp -r pkg gdal-grass-$(GDAL_VER) +- rm -rf gdal-grass-$(GDAL_VER)/.svn +- cp grass57dataset.cpp gdal-grass-$(GDAL_VER) +- cp ../../ogr/ogrsf_frmts/grass/*.cpp gdal-grass-$(GDAL_VER) +- cp ../../ogr/ogrsf_frmts/grass/*.h gdal-grass-$(GDAL_VER) +- tar czvf gdal-grass-$(GDAL_VER).tar.gz ./gdal-grass-$(GDAL_VER) +- rm -rf gdal-grass-$(GDAL_VER) ++ cp -r pkg libgdal-grass-$(GDAL_VER) ++ rm -rf libgdal-grass-$(GDAL_VER)/.svn ++ cp grass57dataset.cpp libgdal-grass-$(GDAL_VER) ++ cp ../../ogr/ogrsf_frmts/grass/*.cpp libgdal-grass-$(GDAL_VER) ++ cp ../../ogr/ogrsf_frmts/grass/*.h libgdal-grass-$(GDAL_VER) ++ # Adding VERSION to distribution ++ cp ../../VERSION libgdal-grass-$(GDAL_VER) ++ tar czvf libgdal-grass-$(GDAL_VER).tar.gz ./libgdal-grass-$(GDAL_VER) ++ rm -rf libgdal-grass-$(GDAL_VER) + diff --git a/gdal/debian/patches/hdf4 b/gdal/debian/patches/hdf4 new file mode 100644 index 000000000000..0f21c1e08a00 --- /dev/null +++ b/gdal/debian/patches/hdf4 @@ -0,0 +1,52 @@ +Description: Link the -alt HDF4 libs. +Author: Francesco Paolo Lovergine , Alan Boudreault +Last-Update: 2012-02-01 +Forwarded: not-needed + +--- a/configure ++++ b/configure +@@ -26228,7 +26228,7 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mfhdf_SDreaddata" >&5 + $as_echo "$ac_cv_lib_mfhdf_SDreaddata" >&6; } + if test "x$ac_cv_lib_mfhdf_SDreaddata" = xyes; then : +- HDF_LIB_NAME="-lmfhdf -ldf" ++ HDF_LIB_NAME="-lmfhdfalt -ldfalt" + else + HDF_LIB_NAME=missing + fi +@@ -26288,7 +26288,7 @@ if ${ac_cv_lib_mfhdf_SDreaddata+:} false + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lmfhdf -ldf -ljpeg -lz $LIBS" ++LIBS="-lmfhdfalt -ldfalt -ljpeg -lz $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -26319,7 +26319,7 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mfhdf_SDreaddata" >&5 + $as_echo "$ac_cv_lib_mfhdf_SDreaddata" >&6; } + if test "x$ac_cv_lib_mfhdf_SDreaddata" = xyes; then : +- HDF_LIB_NAME="-lmfhdf -ldf" ++ HDF_LIB_NAME="-lmfhdfalt -ldfalt" + else + HDF_LIB_NAME=missing + fi +@@ -26334,7 +26334,7 @@ if ${ac_cv_lib_mfhdf_SDreaddata+:} false + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lmfhdf -ldf -lsz -ljpeg -lz $LIBS" ++LIBS="-lmfhdfalt -ldfalt -lsz -ljpeg -lz $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -26365,7 +26365,7 @@ fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mfhdf_SDreaddata" >&5 + $as_echo "$ac_cv_lib_mfhdf_SDreaddata" >&6; } + if test "x$ac_cv_lib_mfhdf_SDreaddata" = xyes; then : +- HDF_LIB_NAME="-lmfhdf -ldf -lsz" ++ HDF_LIB_NAME="-lmfhdfalt -ldfalt -lsz" + else + HDF_LIB_NAME=missing + fi diff --git a/gdal/debian/patches/java.opt b/gdal/debian/patches/java.opt new file mode 100644 index 000000000000..b0fd385f1e7e --- /dev/null +++ b/gdal/debian/patches/java.opt @@ -0,0 +1,16 @@ +Description: Fix path to default JVM. +Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628022 +Author: Ezequiel Lara Gómez +Last-Update: 2013-07-01 +Forwarded: not-needed + +--- a/swig/java/java.opt ++++ b/swig/java/java.opt +@@ -3,6 +3,7 @@ + #JAVA_HOME = "C:\Program Files\Java\jdk1.6.0_16" + #JAVA_HOME = /usr/lib/jvm/java-6-openjdk/ + #JAVA_HOME = /usr/lib/jvm/java-7-openjdk-amd64/ ++JAVA_HOME = /usr/lib/jvm/default-java/ + JAVADOC=$(JAVA_HOME)/bin/javadoc + JAVAC=$(JAVA_HOME)/bin/javac + JAVA=$(JAVA_HOME)/bin/java diff --git a/gdal/debian/patches/mrsid-plugin b/gdal/debian/patches/mrsid-plugin new file mode 100644 index 000000000000..3acc5abef86e --- /dev/null +++ b/gdal/debian/patches/mrsid-plugin @@ -0,0 +1,5265 @@ +Description: Add support for building the libgdal-mrsid plugin. +Author: Alan Boudreault , Francesco Paolo Lovergine +Last-Update: 2010-05-14 +Forwarded: not-needed + +--- a/frmts/mrsid/GNUmakefile ++++ b/frmts/mrsid/GNUmakefile +@@ -31,3 +31,10 @@ $(PLUGIN_DLL): $(OBJ) + # -rpath $(INST_LIB) \ + # -no-undefined -export-dynamic + ++dist: ++ cp -r pkg libgdal-mrsid-$(GDAL_VER) ++ rm -rf libgdal-mrsid-$(GDAL_VER)/.svn ++ cp *.h libgdal-mrsid-$(GDAL_VER) ++ cp *.cpp libgdal-mrsid-$(GDAL_VER) ++ tar czvf libgdal-mrsid-$(GDAL_VER).tar.gz ./libgdal-mrsid-$(GDAL_VER) ++ rm -rf libgdal-mrsid-$(GDAL_VER) +--- /dev/null ++++ b/frmts/mrsid/pkg/Makefile.in +@@ -0,0 +1,36 @@ ++CC = @CC@ ++CXX = @CXX@ ++LD = @CXX@ ++ ++CPPFLAGS = -DFRMT_mrsid @GDAL_INC@ @MRSID_FLAGS@ @MRSID_INCLUDE@ @GEOTIFF_INCLUDE@ @CPPFLAGS@ ++CXXFLAGS = -DFRMT_mrsid @CXX_WFLAGS@ @MRSID_INCLUDE@ @GEOTIFF_INCLUDE@ @CXX_PIC@ ++ ++RANLIB = @RANLIB@ ++SO_EXT = @SO_EXT@ ++LD_SHARED = @LD_SHARED@ ++ ++LIBS = @LIBS@ ++ ++AUTOLOAD_DIR = @AUTOLOAD_DIR@ ++ ++GLIBNAME = gdal_MrSID.so ++ ++default: $(GLIBNAME) ++ ++install: default ++ install -d $(AUTOLOAD_DIR) ++ cp $(GLIBNAME) $(AUTOLOAD_DIR) ++ ++clean: ++ rm -f $(GLIBNAME) *.o ++ ++distclean: clean ++ rm -fr Makefile config.status config.log autom*.cache ++ ++ ++$(GLIBNAME): mrsiddataset.o mrsidstream.o ++ $(LD_SHARED) mrsiddataset.o mrsidstream.o $(LIBS) -o $(GLIBNAME) ++ ++%.o: %.cpp ++ $(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $< ++ +--- /dev/null ++++ b/frmts/mrsid/pkg/README +@@ -0,0 +1,34 @@ ++ Standalone MrSID Drivers for GDAL ++ =================================== ++ ++This package contains standalone drivers for MrSID raster files that ++can be built after GDAL has been built and installed as an "autoload" ++driver. ++ ++The purpose of this code is allowing a separate building of the MrSID ++driver which is problematic for implied LIZARDTECH COMPUTER SOFTWARE ++LICENSE. Note that in order to use GDAL (and GDAL-based third parties ++product) along with LizardTech DSDK you need to read, understand and ++approve the LizardTech DSDK license which can be retrieved on the ++LizardTech site. ++ ++ ++To build this driver it is necessary for it to find GDAL and MrSID support ++files. Typically the configure and build process would look something ++like: ++ ++./configure --with-gdal=/usr/local/bin/gdal-config \ ++ --with-mrsid=/usr/local/GeoDSDK-7.0 \ ++ --with-jp2mrsid=yes ++ --with-geotiff=[yes or path] ++make ++sudo make install ++ ++The GeoDSDK-7.0 directory will contain the required includes and libraries distributed ++by LizardTech. ++ ++See also: ++ ++ http://www.gdal.org/ ++ http://www.lizardtech.com/ ++ http://www.lizardtech.com/download/ +--- /dev/null ++++ b/frmts/mrsid/pkg/aclocal.m4 +@@ -0,0 +1,202 @@ ++AC_DEFUN(AC_COMPILER_LOCALHACK, ++[ ++ AC_MSG_CHECKING([if local/include already standard]) ++ ++ rm -f comp.out ++ echo 'int main() { int i = 1; if( *((unsigned char *) &i) == 0 ) printf( "BIGENDIAN"); return 0; }' >> conftest.c ++ ${CC} $CPPFLAGS $EXTRA_INCLUDES -o conftest conftest.c 2> comp.out ++ COMP_CHECK=`grep "system directory" comp.out | grep /usr/local/include` ++ if test -z "$COMP_CHECK" ; then ++ AC_MSG_RESULT([no, everything is ok]) ++ else ++ AC_MSG_RESULT([yes, stripping extras]) ++ CXXFLAGS=`echo "$CXXFLAGS " | sed "s/-I\/usr\/local\/include //"` ++ CFLAGS=`echo "$CFLAGS " | sed "s/-I\/usr\/local\/include //"` ++ EXTRA_INCLUDES=`echo "$EXTRA_INCLUDES " | sed "s/-I\/usr\/local\/include //"` ++ fi ++ rm -f comp.out ++]) ++ ++AC_DEFUN(AC_COMPILER_WFLAGS, ++[ ++ # Remove -g from compile flags, we will add via CFG variable if ++ # we need it. ++ CXXFLAGS=`echo "$CXXFLAGS " | sed "s/-g //"` ++ CFLAGS=`echo "$CFLAGS " | sed "s/-g //"` ++ ++ # check for GNU compiler, and use -Wall ++ if test "$GCC" = "yes"; then ++ C_WFLAGS="-Wall" ++ AC_DEFINE(USE_GNUCC, 1, [Define to 1, if you have GNU C ++ compiler]) ++ fi ++ if test "$GXX" = "yes"; then ++ CXX_WFLAGS="-Wall" ++ AC_DEFINE(USE_GNUCC, 1, [Define to 1, if you have GNU C ++ compiler]) ++ fi ++ AC_SUBST(CXX_WFLAGS,$CXX_WFLAGS) ++ AC_SUBST(C_WFLAGS,$C_WFLAGS) ++]) ++ ++AC_DEFUN(AC_COMPILER_PIC, ++[ ++ echo 'void f(){}' > conftest.c ++ if test -z "`${CC-cc} -fPIC -c conftest.c 2>&1`"; then ++ C_PIC=-fPIC ++ else ++ C_PIC= ++ fi ++ if test -z "`${CXX-g++} -fPIC -c conftest.c 2>&1`"; then ++ CXX_PIC=-fPIC ++ else ++ CXX_PIC= ++ fi ++ rm -f conftest* ++ ++ AC_SUBST(CXX_PIC,$CXX_PIC) ++ AC_SUBST(C_PIC,$C_PIC) ++]) ++ ++dnl ++dnl Try to find something to link shared libraries with. Use "c++ -shared" ++dnl in preference to "ld -shared" because it will link in required c++ ++dnl run time support for us. ++dnl ++AC_DEFUN(AC_LD_SHARED, ++[ ++ echo 'void g(); int main(){ g(); return 0; }' > conftest1.c ++ ++ echo '#include ' > conftest2.c ++ echo 'void g(); void g(){printf("");}' >> conftest2.c ++ ${CC} ${C_PIC} -c conftest2.c ++ ++ SO_EXT="so" ++ export SO_EXT ++ LD_SHARED="/bin/true" ++ if test ! -z "`uname -a | grep IRIX`" ; then ++ IRIX_ALL=-all ++ else ++ IRIX_ALL= ++ fi ++ ++ AC_ARG_WITH(ld-shared,[ --with-ld-shared=cmd provide shared library link],,) ++ ++ if test "$with_ld_shared" != "" ; then ++ if test "$with_ld_shared" = "no" ; then ++ echo "user disabled shared library support." ++ else ++ echo "using user supplied .so link command ... $with_ld_shared" ++ fi ++ LD_SHARED="$with_ld_shared" ++ fi ++ ++ dnl Check For Cygwin case. Actually verify that the produced DLL works. ++ ++ if test ! -z "`uname -a | grep CYGWIN`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`gcc -shared conftest2.o -o libconftest.dll`" ; then ++ if test -z "`${CC} conftest1.c -L./ -lconftest -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for Cygwin gcc -shared ... yes" ++ LD_SHARED="c++ -shared" ++ SO_EXT="dll" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ dnl Test special MacOS (Darwin) case. ++ ++ if test ! -z "`uname | grep Darwin`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -dynamiclib conftest2.o -o libconftest.so 2>&1`" ; then ++ ${CC} -c conftest1.c ++ if test -z "`${CXX} conftest1.o libconftest.so -o conftest1 2>&1`"; then ++ DYLD_LIBRARY_PATH_OLD="$DYLD_LIBRARY_PATH" ++ if test -z "$DYLD_LIBRARY_PATH" ; then ++ DYLD_LIBRARY_PATH="`pwd`" ++ else ++ DYLD_LIBRARY_PATH="`pwd`:$DYLD_LIBRARY_PATH" ++ fi ++ export DYLD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -dynamiclib ... yes" ++ LD_SHARED="${CXX} -dynamiclib" ++ SO_EXT=dylib ++ fi ++ DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH_OLD" ++ fi ++ rm -f conftest1.o ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -shared $IRIX_ALL conftest2.o -o libconftest.so 2>&1|grep -v WARNING`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -shared ... yes" ++ LD_SHARED="${CXX} -shared $IRIX_ALL" ++ else ++ echo "checking for ${CXX} -shared ... no(3)" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ else ++ echo "checking for ${CXX} -shared ... no(2)" ++ fi ++ else ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ${CXX} -shared ... no(1)" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`ld -shared conftest2.o -o libconftest.so 2>&1`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ld -shared ... yes" ++ LD_SHARED="ld -shared" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ld -shared ... no" ++ if test ! -x /bin/true ; then ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ if test "$LD_SHARED" = "no" ; then ++ if test -x /bin/true ; then ++ LD_SHARED=/bin/true ++ else ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ ++ rm -f conftest* libconftest* ++ ++ AC_SUBST(LD_SHARED,$LD_SHARED) ++ AC_SUBST(SO_EXT,$SO_EXT) ++]) +--- /dev/null ++++ b/frmts/mrsid/pkg/configure +@@ -0,0 +1,4680 @@ ++#! /bin/sh ++# Guess values for system-dependent variables and create Makefiles. ++# Generated by GNU Autoconf 2.61. ++# ++# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, ++# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++# This configure script is free software; the Free Software Foundation ++# gives unlimited permission to copy, distribute and modify it. ++## --------------------- ## ++## M4sh Initialization. ## ++## --------------------- ## ++ ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++ ++ ++# PATH needs CR ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits ++ ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: ++ fi ++ rm -f conf$$.sh ++fi ++ ++# Support unset when possible. ++if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then ++ as_unset=unset ++else ++ as_unset=false ++fi ++ ++ ++# IFS ++# We need space, tab and new line, in precisely that order. Quoting is ++# there to prevent editors from complaining about space-tab. ++# (If _AS_PATH_WALK were called with IFS unset, it would disable word ++# splitting by setting IFS to empty value.) ++as_nl=' ++' ++IFS=" "" $as_nl" ++ ++# Find who we are. Look in the path if we contain no directory separator. ++case $0 in ++ *[\\/]* ) as_myself=$0 ;; ++ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++# We did not find ourselves, most probably we were run as `sh COMMAND' ++# in which case we are not to be found in the path. ++if test "x$as_myself" = x; then ++ as_myself=$0 ++fi ++if test ! -f "$as_myself"; then ++ echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ { (exit 1); exit 1; } ++fi ++ ++# Work around bugs in pre-3.0 UWIN ksh. ++for as_var in ENV MAIL MAILPATH ++do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++done ++PS1='$ ' ++PS2='> ' ++PS4='+ ' ++ ++# NLS nuisances. ++for as_var in \ ++ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ++ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ++ LC_TELEPHONE LC_TIME ++do ++ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ++ eval $as_var=C; export $as_var ++ else ++ ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ fi ++done ++ ++# Required to use basename. ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ++ as_basename=basename ++else ++ as_basename=false ++fi ++ ++ ++# Name of the executable. ++as_me=`$as_basename -- "$0" || ++$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ ++# CDPATH. ++$as_unset CDPATH ++ ++ ++if test "x$CONFIG_SHELL" = x; then ++ if (eval ":") 2>/dev/null; then ++ as_have_required=yes ++else ++ as_have_required=no ++fi ++ ++ if test $as_have_required = yes && (eval ": ++(as_func_return () { ++ (exit \$1) ++} ++as_func_success () { ++ as_func_return 0 ++} ++as_func_failure () { ++ as_func_return 1 ++} ++as_func_ret_success () { ++ return 0 ++} ++as_func_ret_failure () { ++ return 1 ++} ++ ++exitcode=0 ++if as_func_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_success failed. ++fi ++ ++if as_func_failure; then ++ exitcode=1 ++ echo as_func_failure succeeded. ++fi ++ ++if as_func_ret_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_ret_success failed. ++fi ++ ++if as_func_ret_failure; then ++ exitcode=1 ++ echo as_func_ret_failure succeeded. ++fi ++ ++if ( set x; as_func_ret_success y && test x = \"\$1\" ); then ++ : ++else ++ exitcode=1 ++ echo positional parameters were not saved. ++fi ++ ++test \$exitcode = 0) || { (exit 1); exit 1; } ++ ++( ++ as_lineno_1=\$LINENO ++ as_lineno_2=\$LINENO ++ test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && ++ test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ++") 2> /dev/null; then ++ : ++else ++ as_candidate_shells= ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ case $as_dir in ++ /*) ++ for as_base in sh bash ksh sh5; do ++ as_candidate_shells="$as_candidate_shells $as_dir/$as_base" ++ done;; ++ esac ++done ++IFS=$as_save_IFS ++ ++ ++ for as_shell in $as_candidate_shells $SHELL; do ++ # Try only shells that exist, to save several forks. ++ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ++ { ("$as_shell") 2> /dev/null <<\_ASEOF ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++: ++_ASEOF ++}; then ++ CONFIG_SHELL=$as_shell ++ as_have_required=yes ++ if { "$as_shell" 2> /dev/null <<\_ASEOF ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++: ++(as_func_return () { ++ (exit $1) ++} ++as_func_success () { ++ as_func_return 0 ++} ++as_func_failure () { ++ as_func_return 1 ++} ++as_func_ret_success () { ++ return 0 ++} ++as_func_ret_failure () { ++ return 1 ++} ++ ++exitcode=0 ++if as_func_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_success failed. ++fi ++ ++if as_func_failure; then ++ exitcode=1 ++ echo as_func_failure succeeded. ++fi ++ ++if as_func_ret_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_ret_success failed. ++fi ++ ++if as_func_ret_failure; then ++ exitcode=1 ++ echo as_func_ret_failure succeeded. ++fi ++ ++if ( set x; as_func_ret_success y && test x = "$1" ); then ++ : ++else ++ exitcode=1 ++ echo positional parameters were not saved. ++fi ++ ++test $exitcode = 0) || { (exit 1); exit 1; } ++ ++( ++ as_lineno_1=$LINENO ++ as_lineno_2=$LINENO ++ test "x$as_lineno_1" != "x$as_lineno_2" && ++ test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } ++ ++_ASEOF ++}; then ++ break ++fi ++ ++fi ++ ++ done ++ ++ if test "x$CONFIG_SHELL" != x; then ++ for as_var in BASH_ENV ENV ++ do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ done ++ export CONFIG_SHELL ++ exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} ++fi ++ ++ ++ if test $as_have_required = no; then ++ echo This script requires a shell more modern than all the ++ echo shells that I found on your system. Please install a ++ echo modern shell, or manually run the script under such a ++ echo shell if you do have one. ++ { (exit 1); exit 1; } ++fi ++ ++ ++fi ++ ++fi ++ ++ ++ ++(eval "as_func_return () { ++ (exit \$1) ++} ++as_func_success () { ++ as_func_return 0 ++} ++as_func_failure () { ++ as_func_return 1 ++} ++as_func_ret_success () { ++ return 0 ++} ++as_func_ret_failure () { ++ return 1 ++} ++ ++exitcode=0 ++if as_func_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_success failed. ++fi ++ ++if as_func_failure; then ++ exitcode=1 ++ echo as_func_failure succeeded. ++fi ++ ++if as_func_ret_success; then ++ : ++else ++ exitcode=1 ++ echo as_func_ret_success failed. ++fi ++ ++if as_func_ret_failure; then ++ exitcode=1 ++ echo as_func_ret_failure succeeded. ++fi ++ ++if ( set x; as_func_ret_success y && test x = \"\$1\" ); then ++ : ++else ++ exitcode=1 ++ echo positional parameters were not saved. ++fi ++ ++test \$exitcode = 0") || { ++ echo No shell found that supports shell functions. ++ echo Please tell autoconf@gnu.org about your system, ++ echo including any error possibly output before this ++ echo message ++} ++ ++ ++ ++ as_lineno_1=$LINENO ++ as_lineno_2=$LINENO ++ test "x$as_lineno_1" != "x$as_lineno_2" && ++ test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { ++ ++ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO ++ # uniformly replaced by the line number. The first 'sed' inserts a ++ # line-number line after each line using $LINENO; the second 'sed' ++ # does the real work. The second script uses 'N' to pair each ++ # line-number line with the line containing $LINENO, and appends ++ # trailing '-' during substitution so that $LINENO is not a special ++ # case at line end. ++ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ++ # scripts with optimization help from Paolo Bonzini. Blame Lee ++ # E. McMahon (1931-1989) for sed's syntax. :-) ++ sed -n ' ++ p ++ /[$]LINENO/= ++ ' <$as_myself | ++ sed ' ++ s/[$]LINENO.*/&-/ ++ t lineno ++ b ++ :lineno ++ N ++ :loop ++ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ ++ t loop ++ s/-\n.*// ++ ' >$as_me.lineno && ++ chmod +x "$as_me.lineno" || ++ { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { (exit 1); exit 1; }; } ++ ++ # Don't try to exec as it changes $[0], causing all sort of problems ++ # (the dirname of $[0] is not the place where we might find the ++ # original and so on. Autoconf is especially sensitive to this). ++ . "./$as_me.lineno" ++ # Exit status is that of the last command. ++ exit ++} ++ ++ ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi ++ ++ECHO_C= ECHO_N= ECHO_T= ++case `echo -n x` in ++-n*) ++ case `echo 'x\c'` in ++ *c*) ECHO_T=' ';; # ECHO_T is single tab character. ++ *) ECHO_C='\c';; ++ esac;; ++*) ++ ECHO_N='-n';; ++esac ++ ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++rm -f conf$$ conf$$.exe conf$$.file ++if test -d conf$$.dir; then ++ rm -f conf$$.dir/conf$$.file ++else ++ rm -f conf$$.dir ++ mkdir conf$$.dir ++fi ++echo >conf$$.file ++if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -p' ++elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++else ++ as_ln_s='cp -p' ++fi ++rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file ++rmdir conf$$.dir 2>/dev/null ++ ++if mkdir -p . 2>/dev/null; then ++ as_mkdir_p=: ++else ++ test -d ./-p && rmdir ./-p ++ as_mkdir_p=false ++fi ++ ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' ++else ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' ++fi ++as_executable_p=$as_test_x ++ ++# Sed expression to map a string onto a valid CPP name. ++as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" ++ ++# Sed expression to map a string onto a valid variable name. ++as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" ++ ++ ++ ++exec 7<&0 &1 ++ ++# Name of the host. ++# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, ++# so uname gets run too. ++ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` ++ ++# ++# Initializations. ++# ++ac_default_prefix=/usr/local ++ac_clean_files= ++ac_config_libobj_dir=. ++LIBOBJS= ++cross_compiling=no ++subdirs= ++MFLAGS= ++MAKEFLAGS= ++SHELL=${CONFIG_SHELL-/bin/sh} ++ ++# Identity of this package. ++PACKAGE_NAME= ++PACKAGE_TARNAME= ++PACKAGE_VERSION= ++PACKAGE_STRING= ++PACKAGE_BUGREPORT= ++ ++ac_unique_file="Makefile.in" ++ac_subst_vars='SHELL ++PATH_SEPARATOR ++PACKAGE_NAME ++PACKAGE_TARNAME ++PACKAGE_VERSION ++PACKAGE_STRING ++PACKAGE_BUGREPORT ++exec_prefix ++prefix ++program_transform_name ++bindir ++sbindir ++libexecdir ++datarootdir ++datadir ++sysconfdir ++sharedstatedir ++localstatedir ++includedir ++oldincludedir ++docdir ++infodir ++htmldir ++dvidir ++pdfdir ++psdir ++libdir ++localedir ++mandir ++DEFS ++ECHO_C ++ECHO_N ++ECHO_T ++LIBS ++build_alias ++host_alias ++target_alias ++CC ++CFLAGS ++LDFLAGS ++CPPFLAGS ++ac_ct_CC ++EXEEXT ++OBJEXT ++CXX ++CXXFLAGS ++ac_ct_CXX ++RANLIB ++CXX_PIC ++C_PIC ++LD_SHARED ++SO_EXT ++CXX_WFLAGS ++C_WFLAGS ++GDAL_CONFIG ++GDAL_INC ++AUTOLOAD_DIR ++MRSID_INCLUDE ++MRSID_FLAGS ++GEOTIFF_INCLUDE ++LIBOBJS ++LTLIBOBJS' ++ac_subst_files='' ++ ac_precious_vars='build_alias ++host_alias ++target_alias ++CC ++CFLAGS ++LDFLAGS ++LIBS ++CPPFLAGS ++CXX ++CXXFLAGS ++CCC' ++ ++ ++# Initialize some variables set by options. ++ac_init_help= ++ac_init_version=false ++# The variables have the same names as the options, with ++# dashes changed to underlines. ++cache_file=/dev/null ++exec_prefix=NONE ++no_create= ++no_recursion= ++prefix=NONE ++program_prefix=NONE ++program_suffix=NONE ++program_transform_name=s,x,x, ++silent= ++site= ++srcdir= ++verbose= ++x_includes=NONE ++x_libraries=NONE ++ ++# Installation directory options. ++# These are left unexpanded so users can "make install exec_prefix=/foo" ++# and all the variables that are supposed to be based on exec_prefix ++# by default will actually change. ++# Use braces instead of parens because sh, perl, etc. also accept them. ++# (The list follows the same order as the GNU Coding Standards.) ++bindir='${exec_prefix}/bin' ++sbindir='${exec_prefix}/sbin' ++libexecdir='${exec_prefix}/libexec' ++datarootdir='${prefix}/share' ++datadir='${datarootdir}' ++sysconfdir='${prefix}/etc' ++sharedstatedir='${prefix}/com' ++localstatedir='${prefix}/var' ++includedir='${prefix}/include' ++oldincludedir='/usr/include' ++docdir='${datarootdir}/doc/${PACKAGE}' ++infodir='${datarootdir}/info' ++htmldir='${docdir}' ++dvidir='${docdir}' ++pdfdir='${docdir}' ++psdir='${docdir}' ++libdir='${exec_prefix}/lib' ++localedir='${datarootdir}/locale' ++mandir='${datarootdir}/man' ++ ++ac_prev= ++ac_dashdash= ++for ac_option ++do ++ # If the previous option needs an argument, assign it. ++ if test -n "$ac_prev"; then ++ eval $ac_prev=\$ac_option ++ ac_prev= ++ continue ++ fi ++ ++ case $ac_option in ++ *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; ++ *) ac_optarg=yes ;; ++ esac ++ ++ # Accept the important Cygnus configure options, so we can diagnose typos. ++ ++ case $ac_dashdash$ac_option in ++ --) ++ ac_dashdash=yes ;; ++ ++ -bindir | --bindir | --bindi | --bind | --bin | --bi) ++ ac_prev=bindir ;; ++ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) ++ bindir=$ac_optarg ;; ++ ++ -build | --build | --buil | --bui | --bu) ++ ac_prev=build_alias ;; ++ -build=* | --build=* | --buil=* | --bui=* | --bu=*) ++ build_alias=$ac_optarg ;; ++ ++ -cache-file | --cache-file | --cache-fil | --cache-fi \ ++ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ++ ac_prev=cache_file ;; ++ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ ++ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) ++ cache_file=$ac_optarg ;; ++ ++ --config-cache | -C) ++ cache_file=config.cache ;; ++ ++ -datadir | --datadir | --datadi | --datad) ++ ac_prev=datadir ;; ++ -datadir=* | --datadir=* | --datadi=* | --datad=*) ++ datadir=$ac_optarg ;; ++ ++ -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ ++ | --dataroo | --dataro | --datar) ++ ac_prev=datarootdir ;; ++ -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ ++ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) ++ datarootdir=$ac_optarg ;; ++ ++ -disable-* | --disable-*) ++ ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid feature name: $ac_feature" >&2 ++ { (exit 1); exit 1; }; } ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ++ eval enable_$ac_feature=no ;; ++ ++ -docdir | --docdir | --docdi | --doc | --do) ++ ac_prev=docdir ;; ++ -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) ++ docdir=$ac_optarg ;; ++ ++ -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ++ ac_prev=dvidir ;; ++ -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) ++ dvidir=$ac_optarg ;; ++ ++ -enable-* | --enable-*) ++ ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid feature name: $ac_feature" >&2 ++ { (exit 1); exit 1; }; } ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ++ eval enable_$ac_feature=\$ac_optarg ;; ++ ++ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ ++ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ ++ | --exec | --exe | --ex) ++ ac_prev=exec_prefix ;; ++ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ ++ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ ++ | --exec=* | --exe=* | --ex=*) ++ exec_prefix=$ac_optarg ;; ++ ++ -gas | --gas | --ga | --g) ++ # Obsolete; use --with-gas. ++ with_gas=yes ;; ++ ++ -help | --help | --hel | --he | -h) ++ ac_init_help=long ;; ++ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ++ ac_init_help=recursive ;; ++ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ++ ac_init_help=short ;; ++ ++ -host | --host | --hos | --ho) ++ ac_prev=host_alias ;; ++ -host=* | --host=* | --hos=* | --ho=*) ++ host_alias=$ac_optarg ;; ++ ++ -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ++ ac_prev=htmldir ;; ++ -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ ++ | --ht=*) ++ htmldir=$ac_optarg ;; ++ ++ -includedir | --includedir | --includedi | --included | --include \ ++ | --includ | --inclu | --incl | --inc) ++ ac_prev=includedir ;; ++ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ ++ | --includ=* | --inclu=* | --incl=* | --inc=*) ++ includedir=$ac_optarg ;; ++ ++ -infodir | --infodir | --infodi | --infod | --info | --inf) ++ ac_prev=infodir ;; ++ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) ++ infodir=$ac_optarg ;; ++ ++ -libdir | --libdir | --libdi | --libd) ++ ac_prev=libdir ;; ++ -libdir=* | --libdir=* | --libdi=* | --libd=*) ++ libdir=$ac_optarg ;; ++ ++ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ ++ | --libexe | --libex | --libe) ++ ac_prev=libexecdir ;; ++ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ ++ | --libexe=* | --libex=* | --libe=*) ++ libexecdir=$ac_optarg ;; ++ ++ -localedir | --localedir | --localedi | --localed | --locale) ++ ac_prev=localedir ;; ++ -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) ++ localedir=$ac_optarg ;; ++ ++ -localstatedir | --localstatedir | --localstatedi | --localstated \ ++ | --localstate | --localstat | --localsta | --localst | --locals) ++ ac_prev=localstatedir ;; ++ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ ++ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) ++ localstatedir=$ac_optarg ;; ++ ++ -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ++ ac_prev=mandir ;; ++ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) ++ mandir=$ac_optarg ;; ++ ++ -nfp | --nfp | --nf) ++ # Obsolete; use --without-fp. ++ with_fp=no ;; ++ ++ -no-create | --no-create | --no-creat | --no-crea | --no-cre \ ++ | --no-cr | --no-c | -n) ++ no_create=yes ;; ++ ++ -no-recursion | --no-recursion | --no-recursio | --no-recursi \ ++ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ++ no_recursion=yes ;; ++ ++ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ ++ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ ++ | --oldin | --oldi | --old | --ol | --o) ++ ac_prev=oldincludedir ;; ++ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ ++ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ ++ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) ++ oldincludedir=$ac_optarg ;; ++ ++ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ++ ac_prev=prefix ;; ++ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) ++ prefix=$ac_optarg ;; ++ ++ -program-prefix | --program-prefix | --program-prefi | --program-pref \ ++ | --program-pre | --program-pr | --program-p) ++ ac_prev=program_prefix ;; ++ -program-prefix=* | --program-prefix=* | --program-prefi=* \ ++ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) ++ program_prefix=$ac_optarg ;; ++ ++ -program-suffix | --program-suffix | --program-suffi | --program-suff \ ++ | --program-suf | --program-su | --program-s) ++ ac_prev=program_suffix ;; ++ -program-suffix=* | --program-suffix=* | --program-suffi=* \ ++ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) ++ program_suffix=$ac_optarg ;; ++ ++ -program-transform-name | --program-transform-name \ ++ | --program-transform-nam | --program-transform-na \ ++ | --program-transform-n | --program-transform- \ ++ | --program-transform | --program-transfor \ ++ | --program-transfo | --program-transf \ ++ | --program-trans | --program-tran \ ++ | --progr-tra | --program-tr | --program-t) ++ ac_prev=program_transform_name ;; ++ -program-transform-name=* | --program-transform-name=* \ ++ | --program-transform-nam=* | --program-transform-na=* \ ++ | --program-transform-n=* | --program-transform-=* \ ++ | --program-transform=* | --program-transfor=* \ ++ | --program-transfo=* | --program-transf=* \ ++ | --program-trans=* | --program-tran=* \ ++ | --progr-tra=* | --program-tr=* | --program-t=*) ++ program_transform_name=$ac_optarg ;; ++ ++ -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ++ ac_prev=pdfdir ;; ++ -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) ++ pdfdir=$ac_optarg ;; ++ ++ -psdir | --psdir | --psdi | --psd | --ps) ++ ac_prev=psdir ;; ++ -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) ++ psdir=$ac_optarg ;; ++ ++ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ ++ | -silent | --silent | --silen | --sile | --sil) ++ silent=yes ;; ++ ++ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ++ ac_prev=sbindir ;; ++ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ ++ | --sbi=* | --sb=*) ++ sbindir=$ac_optarg ;; ++ ++ -sharedstatedir | --sharedstatedir | --sharedstatedi \ ++ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ ++ | --sharedst | --shareds | --shared | --share | --shar \ ++ | --sha | --sh) ++ ac_prev=sharedstatedir ;; ++ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ ++ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ ++ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ ++ | --sha=* | --sh=*) ++ sharedstatedir=$ac_optarg ;; ++ ++ -site | --site | --sit) ++ ac_prev=site ;; ++ -site=* | --site=* | --sit=*) ++ site=$ac_optarg ;; ++ ++ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ++ ac_prev=srcdir ;; ++ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) ++ srcdir=$ac_optarg ;; ++ ++ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ ++ | --syscon | --sysco | --sysc | --sys | --sy) ++ ac_prev=sysconfdir ;; ++ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ ++ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) ++ sysconfdir=$ac_optarg ;; ++ ++ -target | --target | --targe | --targ | --tar | --ta | --t) ++ ac_prev=target_alias ;; ++ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) ++ target_alias=$ac_optarg ;; ++ ++ -v | -verbose | --verbose | --verbos | --verbo | --verb) ++ verbose=yes ;; ++ ++ -version | --version | --versio | --versi | --vers | -V) ++ ac_init_version=: ;; ++ ++ -with-* | --with-*) ++ ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid package name: $ac_package" >&2 ++ { (exit 1); exit 1; }; } ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ++ eval with_$ac_package=\$ac_optarg ;; ++ ++ -without-* | --without-*) ++ ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid package name: $ac_package" >&2 ++ { (exit 1); exit 1; }; } ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ++ eval with_$ac_package=no ;; ++ ++ --x) ++ # Obsolete; use --with-x. ++ with_x=yes ;; ++ ++ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ ++ | --x-incl | --x-inc | --x-in | --x-i) ++ ac_prev=x_includes ;; ++ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ ++ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) ++ x_includes=$ac_optarg ;; ++ ++ -x-libraries | --x-libraries | --x-librarie | --x-librari \ ++ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ++ ac_prev=x_libraries ;; ++ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ ++ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) ++ x_libraries=$ac_optarg ;; ++ ++ -*) { echo "$as_me: error: unrecognized option: $ac_option ++Try \`$0 --help' for more information." >&2 ++ { (exit 1); exit 1; }; } ++ ;; ++ ++ *=*) ++ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` ++ # Reject names that are not valid shell variable names. ++ expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && ++ { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 ++ { (exit 1); exit 1; }; } ++ eval $ac_envvar=\$ac_optarg ++ export $ac_envvar ;; ++ ++ *) ++ # FIXME: should be removed in autoconf 3.0. ++ echo "$as_me: WARNING: you should use --build, --host, --target" >&2 ++ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && ++ echo "$as_me: WARNING: invalid host type: $ac_option" >&2 ++ : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ++ ;; ++ ++ esac ++done ++ ++if test -n "$ac_prev"; then ++ ac_option=--`echo $ac_prev | sed 's/_/-/g'` ++ { echo "$as_me: error: missing argument to $ac_option" >&2 ++ { (exit 1); exit 1; }; } ++fi ++ ++# Be sure to have absolute directory names. ++for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ ++ datadir sysconfdir sharedstatedir localstatedir includedir \ ++ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ ++ libdir localedir mandir ++do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ [\\/$]* | ?:[\\/]* ) continue;; ++ NONE | '' ) case $ac_var in *prefix ) continue;; esac;; ++ esac ++ { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 ++ { (exit 1); exit 1; }; } ++done ++ ++# There might be people who depend on the old broken behavior: `$host' ++# used to hold the argument of --host etc. ++# FIXME: To remove some day. ++build=$build_alias ++host=$host_alias ++target=$target_alias ++ ++# FIXME: To remove some day. ++if test "x$host_alias" != x; then ++ if test "x$build_alias" = x; then ++ cross_compiling=maybe ++ echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. ++ If a cross compiler is detected then cross compile mode will be used." >&2 ++ elif test "x$build_alias" != "x$host_alias"; then ++ cross_compiling=yes ++ fi ++fi ++ ++ac_tool_prefix= ++test -n "$host_alias" && ac_tool_prefix=$host_alias- ++ ++test "$silent" = yes && exec 6>/dev/null ++ ++ ++ac_pwd=`pwd` && test -n "$ac_pwd" && ++ac_ls_di=`ls -di .` && ++ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || ++ { echo "$as_me: error: Working directory cannot be determined" >&2 ++ { (exit 1); exit 1; }; } ++test "X$ac_ls_di" = "X$ac_pwd_ls_di" || ++ { echo "$as_me: error: pwd does not report name of working directory" >&2 ++ { (exit 1); exit 1; }; } ++ ++ ++# Find the source files, if location was not specified. ++if test -z "$srcdir"; then ++ ac_srcdir_defaulted=yes ++ # Try the directory containing this script, then the parent directory. ++ ac_confdir=`$as_dirname -- "$0" || ++$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$0" : 'X\(//\)[^/]' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++echo X"$0" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ srcdir=$ac_confdir ++ if test ! -r "$srcdir/$ac_unique_file"; then ++ srcdir=.. ++ fi ++else ++ ac_srcdir_defaulted=no ++fi ++if test ! -r "$srcdir/$ac_unique_file"; then ++ test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." ++ { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 ++ { (exit 1); exit 1; }; } ++fi ++ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ++ac_abs_confdir=`( ++ cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 ++ { (exit 1); exit 1; }; } ++ pwd)` ++# When building in place, set srcdir=. ++if test "$ac_abs_confdir" = "$ac_pwd"; then ++ srcdir=. ++fi ++# Remove unnecessary trailing slashes from srcdir. ++# Double slashes in file names in object file debugging info ++# mess up M-x gdb in Emacs. ++case $srcdir in ++*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; ++esac ++for ac_var in $ac_precious_vars; do ++ eval ac_env_${ac_var}_set=\${${ac_var}+set} ++ eval ac_env_${ac_var}_value=\$${ac_var} ++ eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} ++ eval ac_cv_env_${ac_var}_value=\$${ac_var} ++done ++ ++# ++# Report the --help message. ++# ++if test "$ac_init_help" = "long"; then ++ # Omit some internal or obsolete options to make the list less imposing. ++ # This message is too long to be a string in the A/UX 3.1 sh. ++ cat <<_ACEOF ++\`configure' configures this package to adapt to many kinds of systems. ++ ++Usage: $0 [OPTION]... [VAR=VALUE]... ++ ++To assign environment variables (e.g., CC, CFLAGS...), specify them as ++VAR=VALUE. See below for descriptions of some of the useful variables. ++ ++Defaults for the options are specified in brackets. ++ ++Configuration: ++ -h, --help display this help and exit ++ --help=short display options specific to this package ++ --help=recursive display the short help of all the included packages ++ -V, --version display version information and exit ++ -q, --quiet, --silent do not print \`checking...' messages ++ --cache-file=FILE cache test results in FILE [disabled] ++ -C, --config-cache alias for \`--cache-file=config.cache' ++ -n, --no-create do not create output files ++ --srcdir=DIR find the sources in DIR [configure dir or \`..'] ++ ++Installation directories: ++ --prefix=PREFIX install architecture-independent files in PREFIX ++ [$ac_default_prefix] ++ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX ++ [PREFIX] ++ ++By default, \`make install' will install all the files in ++\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify ++an installation prefix other than \`$ac_default_prefix' using \`--prefix', ++for instance \`--prefix=\$HOME'. ++ ++For better control, use the options below. ++ ++Fine tuning of the installation directories: ++ --bindir=DIR user executables [EPREFIX/bin] ++ --sbindir=DIR system admin executables [EPREFIX/sbin] ++ --libexecdir=DIR program executables [EPREFIX/libexec] ++ --sysconfdir=DIR read-only single-machine data [PREFIX/etc] ++ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] ++ --localstatedir=DIR modifiable single-machine data [PREFIX/var] ++ --libdir=DIR object code libraries [EPREFIX/lib] ++ --includedir=DIR C header files [PREFIX/include] ++ --oldincludedir=DIR C header files for non-gcc [/usr/include] ++ --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] ++ --datadir=DIR read-only architecture-independent data [DATAROOTDIR] ++ --infodir=DIR info documentation [DATAROOTDIR/info] ++ --localedir=DIR locale-dependent data [DATAROOTDIR/locale] ++ --mandir=DIR man documentation [DATAROOTDIR/man] ++ --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] ++ --htmldir=DIR html documentation [DOCDIR] ++ --dvidir=DIR dvi documentation [DOCDIR] ++ --pdfdir=DIR pdf documentation [DOCDIR] ++ --psdir=DIR ps documentation [DOCDIR] ++_ACEOF ++ ++ cat <<\_ACEOF ++_ACEOF ++fi ++ ++if test -n "$ac_init_help"; then ++ ++ cat <<\_ACEOF ++ ++Optional Packages: ++ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] ++ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) ++ --with-ld-shared=cmd provide shared library link ++ --with-gdal=PATH GDAL (PATH is path to gdal-config) ++ --with-autoload=DIR Directory for autoload drivers ++ --with-mrsid=ARG Include MrSID support (ARG=path to MrSID DSDK or no) ++ --with-jp2mrsid=ARG Enable MrSID JPEG2000 support (ARG=yes/no) ++ --with-geotiff=ARG Libgeotiff library to use (ARG=yes or path) ++ ++Some influential environment variables: ++ CC C compiler command ++ CFLAGS C compiler flags ++ LDFLAGS linker flags, e.g. -L if you have libraries in a ++ nonstandard directory ++ LIBS libraries to pass to the linker, e.g. -l ++ CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if ++ you have headers in a nonstandard directory ++ CXX C++ compiler command ++ CXXFLAGS C++ compiler flags ++ ++Use these variables to override the choices made by `configure' or to help ++it to find libraries and programs with nonstandard names/locations. ++ ++_ACEOF ++ac_status=$? ++fi ++ ++if test "$ac_init_help" = "recursive"; then ++ # If there are subdirs, report their specific --help. ++ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue ++ test -d "$ac_dir" || continue ++ ac_builddir=. ++ ++case "$ac_dir" in ++.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; ++*) ++ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ # A ".." for each directory in $ac_dir_suffix. ++ ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ case $ac_top_builddir_sub in ++ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; ++ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; ++ esac ;; ++esac ++ac_abs_top_builddir=$ac_pwd ++ac_abs_builddir=$ac_pwd$ac_dir_suffix ++# for backward compatibility: ++ac_top_builddir=$ac_top_build_prefix ++ ++case $srcdir in ++ .) # We are building in place. ++ ac_srcdir=. ++ ac_top_srcdir=$ac_top_builddir_sub ++ ac_abs_top_srcdir=$ac_pwd ;; ++ [\\/]* | ?:[\\/]* ) # Absolute name. ++ ac_srcdir=$srcdir$ac_dir_suffix; ++ ac_top_srcdir=$srcdir ++ ac_abs_top_srcdir=$srcdir ;; ++ *) # Relative name. ++ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ++ ac_top_srcdir=$ac_top_build_prefix$srcdir ++ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; ++esac ++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix ++ ++ cd "$ac_dir" || { ac_status=$?; continue; } ++ # Check for guested configure. ++ if test -f "$ac_srcdir/configure.gnu"; then ++ echo && ++ $SHELL "$ac_srcdir/configure.gnu" --help=recursive ++ elif test -f "$ac_srcdir/configure"; then ++ echo && ++ $SHELL "$ac_srcdir/configure" --help=recursive ++ else ++ echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ++ fi || ac_status=$? ++ cd "$ac_pwd" || { ac_status=$?; break; } ++ done ++fi ++ ++test -n "$ac_init_help" && exit $ac_status ++if $ac_init_version; then ++ cat <<\_ACEOF ++configure ++generated by GNU Autoconf 2.61 ++ ++Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, ++2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ++This configure script is free software; the Free Software Foundation ++gives unlimited permission to copy, distribute and modify it. ++_ACEOF ++ exit ++fi ++cat >config.log <<_ACEOF ++This file contains any messages produced by compilers while ++running configure, to aid debugging if configure makes a mistake. ++ ++It was created by $as_me, which was ++generated by GNU Autoconf 2.61. Invocation command line was ++ ++ $ $0 $@ ++ ++_ACEOF ++exec 5>>config.log ++{ ++cat <<_ASUNAME ++## --------- ## ++## Platform. ## ++## --------- ## ++ ++hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` ++uname -m = `(uname -m) 2>/dev/null || echo unknown` ++uname -r = `(uname -r) 2>/dev/null || echo unknown` ++uname -s = `(uname -s) 2>/dev/null || echo unknown` ++uname -v = `(uname -v) 2>/dev/null || echo unknown` ++ ++/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` ++/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` ++ ++/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` ++/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` ++/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` ++/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` ++/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` ++/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` ++/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` ++ ++_ASUNAME ++ ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ echo "PATH: $as_dir" ++done ++IFS=$as_save_IFS ++ ++} >&5 ++ ++cat >&5 <<_ACEOF ++ ++ ++## ----------- ## ++## Core tests. ## ++## ----------- ## ++ ++_ACEOF ++ ++ ++# Keep a trace of the command line. ++# Strip out --no-create and --no-recursion so they do not pile up. ++# Strip out --silent because we don't want to record it for future runs. ++# Also quote any args containing shell meta-characters. ++# Make two passes to allow for proper duplicate-argument suppression. ++ac_configure_args= ++ac_configure_args0= ++ac_configure_args1= ++ac_must_keep_next=false ++for ac_pass in 1 2 ++do ++ for ac_arg ++ do ++ case $ac_arg in ++ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; ++ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ ++ | -silent | --silent | --silen | --sile | --sil) ++ continue ;; ++ *\'*) ++ ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; ++ esac ++ case $ac_pass in ++ 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; ++ 2) ++ ac_configure_args1="$ac_configure_args1 '$ac_arg'" ++ if test $ac_must_keep_next = true; then ++ ac_must_keep_next=false # Got value, back to normal. ++ else ++ case $ac_arg in ++ *=* | --config-cache | -C | -disable-* | --disable-* \ ++ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ ++ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ ++ | -with-* | --with-* | -without-* | --without-* | --x) ++ case "$ac_configure_args0 " in ++ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; ++ esac ++ ;; ++ -* ) ac_must_keep_next=true ;; ++ esac ++ fi ++ ac_configure_args="$ac_configure_args '$ac_arg'" ++ ;; ++ esac ++ done ++done ++$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } ++$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } ++ ++# When interrupted or exit'd, cleanup temporary files, and complete ++# config.log. We remove comments because anyway the quotes in there ++# would cause problems or look ugly. ++# WARNING: Use '\'' to represent an apostrophe within the trap. ++# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. ++trap 'exit_status=$? ++ # Save into config.log some information that might help in debugging. ++ { ++ echo ++ ++ cat <<\_ASBOX ++## ---------------- ## ++## Cache variables. ## ++## ---------------- ## ++_ASBOX ++ echo ++ # The following way of writing the cache mishandles newlines in values, ++( ++ for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do ++ eval ac_val=\$$ac_var ++ case $ac_val in #( ++ *${as_nl}*) ++ case $ac_var in #( ++ *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ++echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ++ esac ++ case $ac_var in #( ++ _ | IFS | as_nl) ;; #( ++ *) $as_unset $ac_var ;; ++ esac ;; ++ esac ++ done ++ (set) 2>&1 | ++ case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( ++ *${as_nl}ac_space=\ *) ++ sed -n \ ++ "s/'\''/'\''\\\\'\'''\''/g; ++ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ++ ;; #( ++ *) ++ sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ++ ;; ++ esac | ++ sort ++) ++ echo ++ ++ cat <<\_ASBOX ++## ----------------- ## ++## Output variables. ## ++## ----------------- ## ++_ASBOX ++ echo ++ for ac_var in $ac_subst_vars ++ do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ echo "$ac_var='\''$ac_val'\''" ++ done | sort ++ echo ++ ++ if test -n "$ac_subst_files"; then ++ cat <<\_ASBOX ++## ------------------- ## ++## File substitutions. ## ++## ------------------- ## ++_ASBOX ++ echo ++ for ac_var in $ac_subst_files ++ do ++ eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac ++ echo "$ac_var='\''$ac_val'\''" ++ done | sort ++ echo ++ fi ++ ++ if test -s confdefs.h; then ++ cat <<\_ASBOX ++## ----------- ## ++## confdefs.h. ## ++## ----------- ## ++_ASBOX ++ echo ++ cat confdefs.h ++ echo ++ fi ++ test "$ac_signal" != 0 && ++ echo "$as_me: caught signal $ac_signal" ++ echo "$as_me: exit $exit_status" ++ } >&5 ++ rm -f core *.core core.conftest.* && ++ rm -f -r conftest* confdefs* conf$$* $ac_clean_files && ++ exit $exit_status ++' 0 ++for ac_signal in 1 2 13 15; do ++ trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal ++done ++ac_signal=0 ++ ++# confdefs.h avoids OS command line length limits that DEFS can exceed. ++rm -f -r conftest* confdefs.h ++ ++# Predefined preprocessor variables. ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_NAME "$PACKAGE_NAME" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_TARNAME "$PACKAGE_TARNAME" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_VERSION "$PACKAGE_VERSION" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_STRING "$PACKAGE_STRING" ++_ACEOF ++ ++ ++cat >>confdefs.h <<_ACEOF ++#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" ++_ACEOF ++ ++ ++# Let the site file select an alternate cache file if it wants to. ++# Prefer explicitly selected file to automatically selected ones. ++if test -n "$CONFIG_SITE"; then ++ set x "$CONFIG_SITE" ++elif test "x$prefix" != xNONE; then ++ set x "$prefix/share/config.site" "$prefix/etc/config.site" ++else ++ set x "$ac_default_prefix/share/config.site" \ ++ "$ac_default_prefix/etc/config.site" ++fi ++shift ++for ac_site_file ++do ++ if test -r "$ac_site_file"; then ++ { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 ++echo "$as_me: loading site script $ac_site_file" >&6;} ++ sed 's/^/| /' "$ac_site_file" >&5 ++ . "$ac_site_file" ++ fi ++done ++ ++ ++# Check that the precious variables saved in the cache have kept the same ++# value. ++ac_cache_corrupted=false ++for ac_var in $ac_precious_vars; do ++ eval ac_old_set=\$ac_cv_env_${ac_var}_set ++ eval ac_new_set=\$ac_env_${ac_var}_set ++ eval ac_old_val=\$ac_cv_env_${ac_var}_value ++ eval ac_new_val=\$ac_env_${ac_var}_value ++ case $ac_old_set,$ac_new_set in ++ set,) ++ { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 ++echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ++ ac_cache_corrupted=: ;; ++ ,set) ++ { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 ++echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ++ ac_cache_corrupted=: ;; ++ ,);; ++ *) ++ if test "x$ac_old_val" != "x$ac_new_val"; then ++ { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 ++echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ++ { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 ++echo "$as_me: former value: $ac_old_val" >&2;} ++ { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 ++echo "$as_me: current value: $ac_new_val" >&2;} ++ ac_cache_corrupted=: ++ fi;; ++ esac ++ # Pass precious variables to config.status. ++ if test "$ac_new_set" = set; then ++ case $ac_new_val in ++ *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; ++ *) ac_arg=$ac_var=$ac_new_val ;; ++ esac ++ case " $ac_configure_args " in ++ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. ++ *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; ++ esac ++ fi ++done ++if $ac_cache_corrupted; then ++ { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 ++echo "$as_me: error: changes in the environment can compromise the build" >&2;} ++ { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 ++echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ ++ ++ ++ ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. ++set dummy ${ac_tool_prefix}gcc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CC="${ac_tool_prefix}gcc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_CC"; then ++ ac_ct_CC=$CC ++ # Extract the first word of "gcc", so it can be a program name with args. ++set dummy gcc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_CC"; then ++ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_CC="gcc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_CC=$ac_cv_prog_ac_ct_CC ++if test -n "$ac_ct_CC"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++echo "${ECHO_T}$ac_ct_CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ if test "x$ac_ct_CC" = x; then ++ CC="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ CC=$ac_ct_CC ++ fi ++else ++ CC="$ac_cv_prog_CC" ++fi ++ ++if test -z "$CC"; then ++ if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. ++set dummy ${ac_tool_prefix}cc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CC="${ac_tool_prefix}cc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ fi ++fi ++if test -z "$CC"; then ++ # Extract the first word of "cc", so it can be a program name with args. ++set dummy cc; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++ ac_prog_rejected=no ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ++ ac_prog_rejected=yes ++ continue ++ fi ++ ac_cv_prog_CC="cc" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++if test $ac_prog_rejected = yes; then ++ # We found a bogon in the path, so make sure we never use it. ++ set dummy $ac_cv_prog_CC ++ shift ++ if test $# != 0; then ++ # We chose a different compiler from the bogus one. ++ # However, it has the same basename, so the bogon will be chosen ++ # first if we set CC to just the basename; use the full file name. ++ shift ++ ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" ++ fi ++fi ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$CC"; then ++ if test -n "$ac_tool_prefix"; then ++ for ac_prog in cl.exe ++ do ++ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. ++set dummy $ac_tool_prefix$ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CC"; then ++ ac_cv_prog_CC="$CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CC="$ac_tool_prefix$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CC=$ac_cv_prog_CC ++if test -n "$CC"; then ++ { echo "$as_me:$LINENO: result: $CC" >&5 ++echo "${ECHO_T}$CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$CC" && break ++ done ++fi ++if test -z "$CC"; then ++ ac_ct_CC=$CC ++ for ac_prog in cl.exe ++do ++ # Extract the first word of "$ac_prog", so it can be a program name with args. ++set dummy $ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_CC+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_CC"; then ++ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_CC="$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_CC=$ac_cv_prog_ac_ct_CC ++if test -n "$ac_ct_CC"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ++echo "${ECHO_T}$ac_ct_CC" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$ac_ct_CC" && break ++done ++ ++ if test "x$ac_ct_CC" = x; then ++ CC="" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ CC=$ac_ct_CC ++ fi ++fi ++ ++fi ++ ++ ++test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH ++See \`config.log' for more details." >&5 ++echo "$as_me: error: no acceptable C compiler found in \$PATH ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++ ++# Provide some information about the compiler. ++echo "$as_me:$LINENO: checking for C compiler version" >&5 ++ac_compiler=`set X $ac_compile; echo $2` ++{ (ac_try="$ac_compiler --version >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler --version >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -v >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -v >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -V >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -V >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++ ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++ac_clean_files_save=$ac_clean_files ++ac_clean_files="$ac_clean_files a.out a.exe b.out" ++# Try to create an executable without -o first, disregard a.out. ++# It will help us diagnose broken compilers, and finding out an intuition ++# of exeext. ++{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 ++echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ++ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ++# ++# List of possible output files, starting from the most likely. ++# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) ++# only as a last resort. b.out is created by i960 compilers. ++ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' ++# ++# The IRIX 6 linker writes into existing files which may not be ++# executable, retaining their permissions. Remove them first so a ++# subsequent execution test works. ++ac_rmfiles= ++for ac_file in $ac_files ++do ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ * ) ac_rmfiles="$ac_rmfiles $ac_file";; ++ esac ++done ++rm -f $ac_rmfiles ++ ++if { (ac_try="$ac_link_default" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link_default") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; then ++ # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. ++# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' ++# in a Makefile. We should not override ac_cv_exeext if it was cached, ++# so that the user can short-circuit this test for compilers unknown to ++# Autoconf. ++for ac_file in $ac_files '' ++do ++ test -f "$ac_file" || continue ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ++ ;; ++ [ab].out ) ++ # We found the default executable, but exeext='' is most ++ # certainly right. ++ break;; ++ *.* ) ++ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; ++ then :; else ++ ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ++ fi ++ # We set ac_cv_exeext here because the later test for it is not ++ # safe: cross compilers may not add the suffix if given an `-o' ++ # argument, so we may need to know it at that point already. ++ # Even if this section looks crufty: it has the advantage of ++ # actually working. ++ break;; ++ * ) ++ break;; ++ esac ++done ++test "$ac_cv_exeext" = no && ac_cv_exeext= ++ ++else ++ ac_file='' ++fi ++ ++{ echo "$as_me:$LINENO: result: $ac_file" >&5 ++echo "${ECHO_T}$ac_file" >&6; } ++if test -z "$ac_file"; then ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++{ { echo "$as_me:$LINENO: error: C compiler cannot create executables ++See \`config.log' for more details." >&5 ++echo "$as_me: error: C compiler cannot create executables ++See \`config.log' for more details." >&2;} ++ { (exit 77); exit 77; }; } ++fi ++ ++ac_exeext=$ac_cv_exeext ++ ++# Check that the compiler produces executables we can run. If not, either ++# the compiler is broken, or we cross compile. ++{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 ++echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } ++# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 ++# If not cross compiling, check that we can run a simple program. ++if test "$cross_compiling" != yes; then ++ if { ac_try='./$ac_file' ++ { (case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_try") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; }; then ++ cross_compiling=no ++ else ++ if test "$cross_compiling" = maybe; then ++ cross_compiling=yes ++ else ++ { { echo "$as_me:$LINENO: error: cannot run C compiled programs. ++If you meant to cross compile, use \`--host'. ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot run C compiled programs. ++If you meant to cross compile, use \`--host'. ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ fi ++fi ++{ echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } ++ ++rm -f a.out a.exe conftest$ac_cv_exeext b.out ++ac_clean_files=$ac_clean_files_save ++# Check that the compiler produces executables we can run. If not, either ++# the compiler is broken, or we cross compile. ++{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 ++echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } ++{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 ++echo "${ECHO_T}$cross_compiling" >&6; } ++ ++{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 ++echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; then ++ # If both `conftest.exe' and `conftest' are `present' (well, observable) ++# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will ++# work properly (i.e., refer to `conftest.exe'), while it won't with ++# `rm'. ++for ac_file in conftest.exe conftest conftest.*; do ++ test -f "$ac_file" || continue ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ++ break;; ++ * ) break;; ++ esac ++done ++else ++ { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot compute suffix of executables: cannot compile and link ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++rm -f conftest$ac_cv_exeext ++{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ++echo "${ECHO_T}$ac_cv_exeext" >&6; } ++ ++rm -f conftest.$ac_ext ++EXEEXT=$ac_cv_exeext ++ac_exeext=$EXEEXT ++{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 ++echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } ++if test "${ac_cv_objext+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.o conftest.obj ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); }; then ++ for ac_file in conftest.o conftest.obj conftest.*; do ++ test -f "$ac_file" || continue; ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; ++ *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` ++ break;; ++ esac ++done ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile ++See \`config.log' for more details." >&5 ++echo "$as_me: error: cannot compute suffix of object files: cannot compile ++See \`config.log' for more details." >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++rm -f conftest.$ac_cv_objext conftest.$ac_ext ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ++echo "${ECHO_T}$ac_cv_objext" >&6; } ++OBJEXT=$ac_cv_objext ++ac_objext=$OBJEXT ++{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ++echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } ++if test "${ac_cv_c_compiler_gnu+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++#ifndef __GNUC__ ++ choke me ++#endif ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_compiler_gnu=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_compiler_gnu=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ac_cv_c_compiler_gnu=$ac_compiler_gnu ++ ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ++echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } ++GCC=`test $ac_compiler_gnu = yes && echo yes` ++ac_test_CFLAGS=${CFLAGS+set} ++ac_save_CFLAGS=$CFLAGS ++{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ++echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } ++if test "${ac_cv_prog_cc_g+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_save_c_werror_flag=$ac_c_werror_flag ++ ac_c_werror_flag=yes ++ ac_cv_prog_cc_g=no ++ CFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cc_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ CFLAGS="" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ : ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_c_werror_flag=$ac_save_c_werror_flag ++ CFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cc_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_c_werror_flag=$ac_save_c_werror_flag ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ++echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } ++if test "$ac_test_CFLAGS" = set; then ++ CFLAGS=$ac_save_CFLAGS ++elif test $ac_cv_prog_cc_g = yes; then ++ if test "$GCC" = yes; then ++ CFLAGS="-g -O2" ++ else ++ CFLAGS="-g" ++ fi ++else ++ if test "$GCC" = yes; then ++ CFLAGS="-O2" ++ else ++ CFLAGS= ++ fi ++fi ++{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ++echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } ++if test "${ac_cv_prog_cc_c89+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_cv_prog_cc_c89=no ++ac_save_CC=$CC ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++#include ++#include ++#include ++#include ++/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ ++struct buf { int x; }; ++FILE * (*rcsopen) (struct buf *, struct stat *, int); ++static char *e (p, i) ++ char **p; ++ int i; ++{ ++ return p[i]; ++} ++static char *f (char * (*g) (char **, int), char **p, ...) ++{ ++ char *s; ++ va_list v; ++ va_start (v,p); ++ s = g (p, va_arg (v,int)); ++ va_end (v); ++ return s; ++} ++ ++/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has ++ function prototypes and stuff, but not '\xHH' hex character constants. ++ These don't provoke an error unfortunately, instead are silently treated ++ as 'x'. The following induces an error, until -std is added to get ++ proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an ++ array size at least. It's necessary to write '\x00'==0 to get something ++ that's true only with -std. */ ++int osf4_cc_array ['\x00' == 0 ? 1 : -1]; ++ ++/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters ++ inside strings and character constants. */ ++#define FOO(x) 'x' ++int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; ++ ++int test (int i, double x); ++struct s1 {int (*f) (int a);}; ++struct s2 {int (*f) (double a);}; ++int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); ++int argc; ++char **argv; ++int ++main () ++{ ++return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ++ ; ++ return 0; ++} ++_ACEOF ++for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ ++ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" ++do ++ CC="$ac_save_CC $ac_arg" ++ rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cc_c89=$ac_arg ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ++fi ++ ++rm -f core conftest.err conftest.$ac_objext ++ test "x$ac_cv_prog_cc_c89" != "xno" && break ++done ++rm -f conftest.$ac_ext ++CC=$ac_save_CC ++ ++fi ++# AC_CACHE_VAL ++case "x$ac_cv_prog_cc_c89" in ++ x) ++ { echo "$as_me:$LINENO: result: none needed" >&5 ++echo "${ECHO_T}none needed" >&6; } ;; ++ xno) ++ { echo "$as_me:$LINENO: result: unsupported" >&5 ++echo "${ECHO_T}unsupported" >&6; } ;; ++ *) ++ CC="$CC $ac_cv_prog_cc_c89" ++ { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ++echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; ++esac ++ ++ ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ ++ac_ext=cpp ++ac_cpp='$CXXCPP $CPPFLAGS' ++ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ++if test -z "$CXX"; then ++ if test -n "$CCC"; then ++ CXX=$CCC ++ else ++ if test -n "$ac_tool_prefix"; then ++ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC ++ do ++ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. ++set dummy $ac_tool_prefix$ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_CXX+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$CXX"; then ++ ac_cv_prog_CXX="$CXX" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++CXX=$ac_cv_prog_CXX ++if test -n "$CXX"; then ++ { echo "$as_me:$LINENO: result: $CXX" >&5 ++echo "${ECHO_T}$CXX" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$CXX" && break ++ done ++fi ++if test -z "$CXX"; then ++ ac_ct_CXX=$CXX ++ for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC ++do ++ # Extract the first word of "$ac_prog", so it can be a program name with args. ++set dummy $ac_prog; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_CXX"; then ++ ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_CXX="$ac_prog" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_CXX=$ac_cv_prog_ac_ct_CXX ++if test -n "$ac_ct_CXX"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 ++echo "${ECHO_T}$ac_ct_CXX" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ test -n "$ac_ct_CXX" && break ++done ++ ++ if test "x$ac_ct_CXX" = x; then ++ CXX="g++" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ CXX=$ac_ct_CXX ++ fi ++fi ++ ++ fi ++fi ++# Provide some information about the compiler. ++echo "$as_me:$LINENO: checking for C++ compiler version" >&5 ++ac_compiler=`set X $ac_compile; echo $2` ++{ (ac_try="$ac_compiler --version >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler --version >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -v >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -v >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++{ (ac_try="$ac_compiler -V >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -V >&5") 2>&5 ++ ac_status=$? ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } ++ ++{ echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 ++echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } ++if test "${ac_cv_cxx_compiler_gnu+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++#ifndef __GNUC__ ++ choke me ++#endif ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_compiler_gnu=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_compiler_gnu=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ac_cv_cxx_compiler_gnu=$ac_compiler_gnu ++ ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 ++echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } ++GXX=`test $ac_compiler_gnu = yes && echo yes` ++ac_test_CXXFLAGS=${CXXFLAGS+set} ++ac_save_CXXFLAGS=$CXXFLAGS ++{ echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 ++echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } ++if test "${ac_cv_prog_cxx_g+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_save_cxx_werror_flag=$ac_cxx_werror_flag ++ ac_cxx_werror_flag=yes ++ ac_cv_prog_cxx_g=no ++ CXXFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cxx_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ CXXFLAGS="" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ : ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++ CXXFLAGS="-g" ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then ++ ac_cv_prog_cxx_g=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ++ ac_cxx_werror_flag=$ac_save_cxx_werror_flag ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 ++echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } ++if test "$ac_test_CXXFLAGS" = set; then ++ CXXFLAGS=$ac_save_CXXFLAGS ++elif test $ac_cv_prog_cxx_g = yes; then ++ if test "$GXX" = yes; then ++ CXXFLAGS="-g -O2" ++ else ++ CXXFLAGS="-g" ++ fi ++else ++ if test "$GXX" = yes; then ++ CXXFLAGS="-O2" ++ else ++ CXXFLAGS= ++ fi ++fi ++ac_ext=c ++ac_cpp='$CPP $CPPFLAGS' ++ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ++ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ++ac_compiler_gnu=$ac_cv_c_compiler_gnu ++ ++ ++if test -n "$ac_tool_prefix"; then ++ # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. ++set dummy ${ac_tool_prefix}ranlib; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_RANLIB+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$RANLIB"; then ++ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++RANLIB=$ac_cv_prog_RANLIB ++if test -n "$RANLIB"; then ++ { echo "$as_me:$LINENO: result: $RANLIB" >&5 ++echo "${ECHO_T}$RANLIB" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++fi ++if test -z "$ac_cv_prog_RANLIB"; then ++ ac_ct_RANLIB=$RANLIB ++ # Extract the first word of "ranlib", so it can be a program name with args. ++set dummy ranlib; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if test -n "$ac_ct_RANLIB"; then ++ ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. ++else ++as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_prog_ac_ct_RANLIB="ranlib" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++fi ++fi ++ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB ++if test -n "$ac_ct_RANLIB"; then ++ { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ++echo "${ECHO_T}$ac_ct_RANLIB" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ if test "x$ac_ct_RANLIB" = x; then ++ RANLIB=":" ++ else ++ case $cross_compiling:$ac_tool_warned in ++yes:) ++{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&5 ++echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ++whose name does not start with the host triplet. If you think this ++configuration is useful to you, please write to autoconf@gnu.org." >&2;} ++ac_tool_warned=yes ;; ++esac ++ RANLIB=$ac_ct_RANLIB ++ fi ++else ++ RANLIB="$ac_cv_prog_RANLIB" ++fi ++ ++ ++ echo 'void f(){}' > conftest.c ++ if test -z "`${CC-cc} -fPIC -c conftest.c 2>&1`"; then ++ C_PIC=-fPIC ++ else ++ C_PIC= ++ fi ++ if test -z "`${CXX-g++} -fPIC -c conftest.c 2>&1`"; then ++ CXX_PIC=-fPIC ++ else ++ CXX_PIC= ++ fi ++ rm -f conftest* ++ ++ CXX_PIC=$CXX_PIC ++ ++ C_PIC=$C_PIC ++ ++ ++ ++ echo 'void g(); int main(){ g(); return 0; }' > conftest1.c ++ ++ echo '#include ' > conftest2.c ++ echo 'void g(); void g(){printf("");}' >> conftest2.c ++ ${CC} ${C_PIC} -c conftest2.c ++ ++ SO_EXT="so" ++ export SO_EXT ++ LD_SHARED="/bin/true" ++ if test ! -z "`uname -a | grep IRIX`" ; then ++ IRIX_ALL=-all ++ else ++ IRIX_ALL= ++ fi ++ ++ ++# Check whether --with-ld-shared was given. ++if test "${with_ld_shared+set}" = set; then ++ withval=$with_ld_shared; ++fi ++ ++ ++ if test "$with_ld_shared" != "" ; then ++ if test "$with_ld_shared" = "no" ; then ++ echo "user disabled shared library support." ++ else ++ echo "using user supplied .so link command ... $with_ld_shared" ++ fi ++ LD_SHARED="$with_ld_shared" ++ fi ++ ++ ++ if test ! -z "`uname -a | grep CYGWIN`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`gcc -shared conftest2.o -o libconftest.dll`" ; then ++ if test -z "`${CC} conftest1.c -L./ -lconftest -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for Cygwin gcc -shared ... yes" ++ LD_SHARED="c++ -shared" ++ SO_EXT="dll" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ ++ if test ! -z "`uname | grep Darwin`" \ ++ -a "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -dynamiclib conftest2.o -o libconftest.so 2>&1`" ; then ++ ${CC} -c conftest1.c ++ if test -z "`${CXX} conftest1.o libconftest.so -o conftest1 2>&1`"; then ++ DYLD_LIBRARY_PATH_OLD="$DYLD_LIBRARY_PATH" ++ if test -z "$DYLD_LIBRARY_PATH" ; then ++ DYLD_LIBRARY_PATH="`pwd`" ++ else ++ DYLD_LIBRARY_PATH="`pwd`:$DYLD_LIBRARY_PATH" ++ fi ++ export DYLD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -dynamiclib ... yes" ++ LD_SHARED="${CXX} -dynamiclib" ++ SO_EXT=dylib ++ fi ++ DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH_OLD" ++ fi ++ rm -f conftest1.o ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`${CXX} -shared $IRIX_ALL conftest2.o -o libconftest.so 2>&1|grep -v WARNING`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ${CXX} -shared ... yes" ++ LD_SHARED="${CXX} -shared $IRIX_ALL" ++ else ++ echo "checking for ${CXX} -shared ... no(3)" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ else ++ echo "checking for ${CXX} -shared ... no(2)" ++ fi ++ else ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ${CXX} -shared ... no(1)" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" \ ++ -a -z "`ld -shared conftest2.o -o libconftest.so 2>&1`" ; then ++ if test -z "`${CC} conftest1.c libconftest.so -o conftest1 2>&1`"; then ++ LD_LIBRARY_PATH_OLD="$LD_LIBRARY_PATH" ++ if test -z "$LD_LIBRARY_PATH" ; then ++ LD_LIBRARY_PATH="`pwd`" ++ else ++ LD_LIBRARY_PATH="`pwd`:$LD_LIBRARY_PATH" ++ fi ++ export LD_LIBRARY_PATH ++ if test -z "`./conftest1 2>&1`" ; then ++ echo "checking for ld -shared ... yes" ++ LD_SHARED="ld -shared" ++ fi ++ LD_LIBRARY_PATH="$LD_LIBRARY_PATH_OLD" ++ fi ++ fi ++ ++ if test "$LD_SHARED" = "/bin/true" ; then ++ echo "checking for ld -shared ... no" ++ if test ! -x /bin/true ; then ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ if test "$LD_SHARED" = "no" ; then ++ if test -x /bin/true ; then ++ LD_SHARED=/bin/true ++ else ++ LD_SHARED=/usr/bin/true ++ fi ++ fi ++ ++ rm -f conftest* libconftest* ++ ++ LD_SHARED=$LD_SHARED ++ ++ SO_EXT=$SO_EXT ++ ++ ++ ++ # Remove -g from compile flags, we will add via CFG variable if ++ # we need it. ++ CXXFLAGS=`echo "$CXXFLAGS " | sed "s/-g //"` ++ CFLAGS=`echo "$CFLAGS " | sed "s/-g //"` ++ ++ # check for GNU compiler, and use -Wall ++ if test "$GCC" = "yes"; then ++ C_WFLAGS="-Wall" ++ ++cat >>confdefs.h <<\_ACEOF ++#define USE_GNUCC 1 ++_ACEOF ++ ++ fi ++ if test "$GXX" = "yes"; then ++ CXX_WFLAGS="-Wall" ++ ++cat >>confdefs.h <<\_ACEOF ++#define USE_GNUCC 1 ++_ACEOF ++ ++ fi ++ CXX_WFLAGS=$CXX_WFLAGS ++ ++ C_WFLAGS=$C_WFLAGS ++ ++ ++ ++ ++ ++# Check whether --with-gdal was given. ++if test "${with_gdal+set}" = set; then ++ withval=$with_gdal; ++fi ++ ++ ++if test "$with_gdal" = "yes" -o "$with_gdal" = "" ; then ++ ++ if test "`basename xx/$with_gdal`" = "gdal-config" ; then ++ GDAL_CONFIG="$with_gdal" ++ fi ++ ++ if test -z "$GDAL_CONFIG" ; then ++ # Extract the first word of "gdal-config", so it can be a program name with args. ++set dummy gdal-config; ac_word=$2 ++{ echo "$as_me:$LINENO: checking for $ac_word" >&5 ++echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } ++if test "${ac_cv_path_GDAL_CONFIG+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ case $GDAL_CONFIG in ++ [\\/]* | ?:[\\/]*) ++ ac_cv_path_GDAL_CONFIG="$GDAL_CONFIG" # Let the user override the test with a path. ++ ;; ++ *) ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ++ ac_cv_path_GDAL_CONFIG="$as_dir/$ac_word$ac_exec_ext" ++ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ++ break 2 ++ fi ++done ++done ++IFS=$as_save_IFS ++ ++ test -z "$ac_cv_path_GDAL_CONFIG" && ac_cv_path_GDAL_CONFIG="no" ++ ;; ++esac ++fi ++GDAL_CONFIG=$ac_cv_path_GDAL_CONFIG ++if test -n "$GDAL_CONFIG"; then ++ { echo "$as_me:$LINENO: result: $GDAL_CONFIG" >&5 ++echo "${ECHO_T}$GDAL_CONFIG" >&6; } ++else ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++fi ++ ++ ++ fi ++ ++ if test "$GDAL_CONFIG" = "no" ; then ++ { { echo "$as_me:$LINENO: error: couldn't find gdal-config" >&5 ++echo "$as_me: error: couldn't find gdal-config" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++elif test -n "$with_gdal" -a "$with_gdal" != "no" ; then ++ ++ GDAL_CONFIG=$with_gdal ++ ++ if test -f "$GDAL_CONFIG" -a -x "$GDAL_CONFIG" ; then ++ { echo "$as_me:$LINENO: result: user supplied gdal-config ($GDAL_CONFIG)" >&5 ++echo "${ECHO_T}user supplied gdal-config ($GDAL_CONFIG)" >&6; } ++ else ++ { { echo "$as_me:$LINENO: error: '$GDAL_CONFIG' is not an executable. Make sure you use --with-gdal=/path/to/gdal-config" >&5 ++echo "$as_me: error: '$GDAL_CONFIG' is not an executable. Make sure you use --with-gdal=/path/to/gdal-config" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++else ++ ++ { { echo "$as_me:$LINENO: error: gdal required to build GDAL MrSID driver" >&5 ++echo "$as_me: error: gdal required to build GDAL MrSID driver" >&2;} ++ { (exit 1); exit 1; }; } ++ ++fi ++ ++LIBS="`$GDAL_CONFIG --libs` $LIBS" ++GDAL_INC=`$GDAL_CONFIG --cflags` ++ ++GDAL_INC=$GDAL_INC ++ ++ ++ ++# Check whether --with-autoload was given. ++if test "${with_autoload+set}" = set; then ++ withval=$with_autoload; ++fi ++ ++ ++if test "$with_autoload" != "" ; then ++ AUTOLOAD_DIR=$with_autoload ++else ++ if $GDAL_CONFIG --autoload > /dev/null 2>&1 ; then ++ AUTOLOAD_DIR=`$GDAL_CONFIG --autoload` ++ else ++ AUTOLOAD_DIR=`$GDAL_CONFIG --prefix`/lib/gdalplugins ++ fi ++fi ++ ++{ echo "$as_me:$LINENO: result: using $AUTOLOAD_DIR as GDAL shared library autoload directory" >&5 ++echo "${ECHO_T}using $AUTOLOAD_DIR as GDAL shared library autoload directory" >&6; } ++AUTOLOAD_DIR=$AUTOLOAD_DIR ++ ++ ++ ++MRSID_INCLUDE= ++MRSID_FLAGS= ++MRSID_SETTING=no ++HAVE_KAKADU=no ++ ++ ++# Check whether --with-mrsid was given. ++if test "${with_mrsid+set}" = set; then ++ withval=$with_mrsid; ++fi ++ ++ ++ ++# Check whether --with-jp2mrsid was given. ++if test "${with_jp2mrsid+set}" = set; then ++ withval=$with_jp2mrsid; ++fi ++ ++ ++if test "x$with_mrsid" = "xno" -o "x$with_mrsid" = "x" ; then ++ ++ { { echo "$as_me:$LINENO: error: MrSID DSDK is required to build GDAL MrSID driver" >&5 ++echo "$as_me: error: MrSID DSDK is required to build GDAL MrSID driver" >&2;} ++ { (exit 1); exit 1; }; } ++ ++else ++ ++ MRSID_BASE="$with_mrsid/include" ++ ++ { echo "$as_me:$LINENO: checking for lt_base.h in $MRSID_BASE/support" >&5 ++echo $ECHO_N "checking for lt_base.h in $MRSID_BASE/support... $ECHO_C" >&6; } ++ if test -r "$MRSID_BASE/support/lt_base.h" ; then ++ ++ { echo "$as_me:$LINENO: result: found MrSID DSDK version 4.x or newer." >&5 ++echo "${ECHO_T}found MrSID DSDK version 4.x or newer." >&6; } ++ MRSID_SETTING=yes ++ MRSID_INCLUDE="-I$MRSID_BASE/base -I$MRSID_BASE/metadata -I$MRSID_BASE/mrsid_readers -I$MRSID_BASE/j2k_readers -I$MRSID_BASE/support" ++ ++ else ++ ++ { echo "$as_me:$LINENO: result: not found." >&5 ++echo "${ECHO_T}not found." >&6; } ++ ++ { echo "$as_me:$LINENO: checking for lt_base.h in $MRSID_BASE" >&5 ++echo $ECHO_N "checking for lt_base.h in $MRSID_BASE... $ECHO_C" >&6; } ++ if test -r "$MRSID_BASE/lt_base.h" ; then ++ ++ { echo "$as_me:$LINENO: result: found MrSID DSDK version 7.x or newer." >&5 ++echo "${ECHO_T}found MrSID DSDK version 7.x or newer." >&6; }; ++ MRSID_SETTING=yes ++ MRSID_INCLUDE="-I$MRSID_BASE" ++ ++ fi ++ ++ fi ++ ++ if test $MRSID_SETTING = yes ; then ++ ++ MRSID_LIBS="-lltidsdk -lpthread" ++ ++ { echo "$as_me:$LINENO: checking for MG3ImageWriter.h in $with_mrsid/include/mrsid_writers" >&5 ++echo $ECHO_N "checking for MG3ImageWriter.h in $with_mrsid/include/mrsid_writers... $ECHO_C" >&6; } ++ if test -r "$with_mrsid/include/mrsid_writers/MG3ImageWriter.h" ; then ++ { echo "$as_me:$LINENO: result: found MrSID ESDK version 4.x or newer." >&5 ++echo "${ECHO_T}found MrSID ESDK version 4.x or newer." >&6; } ++ MRSID_FLAGS="-DMRSID_ESDK $MRSID_FLAGS" ++ MRSID_INCLUDE="-I$with_mrsid/include/mrsid_writers -I$with_mrsid/include/j2k_writers $MRSID_INCLUDE" ++ if test -r $with_mrsid/3rd-party/lib/Release/libcryptopp.a ; then ++ MRSID_LIBS="-lltiesdk -lcryptopp -lxmlparse $MRSID_LIBS" ++ else ++ MRSID_LIBS="-lltiesdk -lxmlparse $MRSID_LIBS" ++ fi ++ else ++ { echo "$as_me:$LINENO: result: no encoding support." >&5 ++echo "${ECHO_T}no encoding support." >&6; } ++ fi ++ ++ { echo "$as_me:$LINENO: checking for MrSID JPEG2000 support" >&5 ++echo $ECHO_N "checking for MrSID JPEG2000 support... $ECHO_C" >&6; } ++ if test "x$with_jp2mrsid" = "xyes" -a "$HAVE_KAKADU" = "yes" ; then ++ { { echo "$as_me:$LINENO: error: MrSID JPEG2000 support requested, but this is incompatible with use of standalone Kakadu" >&5 ++echo "$as_me: error: MrSID JPEG2000 support requested, but this is incompatible with use of standalone Kakadu" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++ MRSID_KAKADU_LIB= ++ if test "$HAVE_KAKADU" = "no" ; then ++ if test x"$with_jp2mrsid" = x"" -o x"$with_jp2mrsid" = x"yes" ; then ++ if test -r $with_mrsid/3rd-party/lib/Release/libltikdu.a ; then ++ with_jp2mrsid=yes ++ MRSID_KAKADU_LIB=-lltikdu ++ elif test -r $with_mrsid/3rd-party/lib/Release/liblt_kakadu.a ; then ++ with_jp2mrsid=yes ++ MRSID_KAKADU_LIB=-llt_kakadu ++ else ++ { { echo "$as_me:$LINENO: error: MrSID JPEG2000 support requested, but libltikdu.a not found." >&5 ++echo "$as_me: error: MrSID JPEG2000 support requested, but libltikdu.a not found." >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ fi ++ fi ++ ++ if test "x$with_jp2mrsid" = "xyes" ; then ++ MRSID_LIBS="$MRSID_LIBS $MRSID_KAKADU_LIB" ++ MRSID_FLAGS="-DMRSID_J2K $MRSID_FLAGS" ++ { echo "$as_me:$LINENO: result: enabled" >&5 ++echo "${ECHO_T}enabled" >&6; } ++ else ++ { echo "$as_me:$LINENO: result: disabled" >&5 ++echo "${ECHO_T}disabled" >&6; } ++ fi ++ ++ if test -r "$with_mrsid/lib/libltidsdk.a" ; then ++ MRSID_LIBS="-L$with_mrsid/lib -L$with_mrsid/3rd-party/lib $MRSID_LIBS" ++ else ++ MRSID_LIBS="-L$with_mrsid/lib/Release -L$with_mrsid/3rd-party/lib/Release $MRSID_LIBS" ++ fi ++ ++ LIBS="$MRSID_LIBS $LIBS" ++ else ++ MRSID_SETTING=no ++ { echo "$as_me:$LINENO: result: not found." >&5 ++echo "${ECHO_T}not found." >&6; } ++ { { echo "$as_me:$LINENO: error: MrSID requested, but components not found." >&5 ++echo "$as_me: error: MrSID requested, but components not found." >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++fi ++ ++MRSID_INCLUDE=$MRSID_INCLUDE ++ ++MRSID_FLAGS=$MRSID_FLAGS ++ ++ ++ ++GEOTIFF_INCLUDE= ++GEOTIFF_LIBS= ++GEOTIFF_SETTING=no ++ ++ ++# Check whether --with-geotiff was given. ++if test "${with_geotiff+set}" = set; then ++ withval=$with_geotiff; ++fi ++ ++ ++if test "x$with_geotiff" = "xno" ; then ++ ++ { { echo "$as_me:$LINENO: error: libgeotiff is required to build GDAL MrSID driver" >&5 ++echo "$as_me: error: libgeotiff is required to build GDAL MrSID driver" >&2;} ++ { (exit 1); exit 1; }; } ++ ++else ++ ++ GEOTIFF_SETTING=not_found ++ ++ if test "x$with_geotiff" = "xyes" -o "x$with_geotiff" = "x" ; then ++ ++{ echo "$as_me:$LINENO: checking for XTIFFClientOpen in -lgeotiff" >&5 ++echo $ECHO_N "checking for XTIFFClientOpen in -lgeotiff... $ECHO_C" >&6; } ++if test "${ac_cv_lib_geotiff_XTIFFClientOpen+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lgeotiff $LIBS" ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char XTIFFClientOpen (); ++int ++main () ++{ ++return XTIFFClientOpen (); ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ ac_cv_lib_geotiff_XTIFFClientOpen=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_lib_geotiff_XTIFFClientOpen=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_geotiff_XTIFFClientOpen" >&5 ++echo "${ECHO_T}$ac_cv_lib_geotiff_XTIFFClientOpen" >&6; } ++if test $ac_cv_lib_geotiff_XTIFFClientOpen = yes; then ++ GEOTIFF_SETTING=yes ++else ++ GEOTIFF_SETTING=not_found ++fi ++ ++ ++ if test "$GEOTIFF_SETTING" = "yes" ; then ++ GEOTIFF_LIBS="-lgeotiff" ++ if test -d /usr/include/geotiff ; then ++ GEOTIFF_INCLUDE="-I/usr/include/geotiff" ++ fi ++ else ++ { { echo "$as_me:$LINENO: error: libgeotiff is required to build GDAL MrSID driver" >&5 ++echo "$as_me: error: libgeotiff is required to build GDAL MrSID driver" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++ else ++ { echo "$as_me:$LINENO: checking for XTIFFClientOpen in -lgeotiff" >&5 ++echo $ECHO_N "checking for XTIFFClientOpen in -lgeotiff... $ECHO_C" >&6; } ++if test "${ac_cv_lib_geotiff_XTIFFClientOpen+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lgeotiff -L$with_geotiff/lib $LIBS" ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char XTIFFClientOpen (); ++int ++main () ++{ ++return XTIFFClientOpen (); ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ ac_cv_lib_geotiff_XTIFFClientOpen=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_lib_geotiff_XTIFFClientOpen=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_geotiff_XTIFFClientOpen" >&5 ++echo "${ECHO_T}$ac_cv_lib_geotiff_XTIFFClientOpen" >&6; } ++if test $ac_cv_lib_geotiff_XTIFFClientOpen = yes; then ++ GEOTIFF_SETTING=yes ++else ++ GEOTIFF_SETTING=not_found ++fi ++ ++ ++ if test $GEOTIFF_SETTING = "yes" ; then ++ GEOTIFF_LIBS="-L$with_geotiff/lib -lgeotiff" ++ if test -d $with_geotiff/include ; then ++ GEOTIFF_INCLUDE="-I$with_geotiff/include" ++ fi ++ else ++ { echo "$as_me:$LINENO: checking for XTIFFClientOpen in -lgeotiff" >&5 ++echo $ECHO_N "checking for XTIFFClientOpen in -lgeotiff... $ECHO_C" >&6; } ++if test "${ac_cv_lib_geotiff_XTIFFClientOpen+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ ac_check_lib_save_LIBS=$LIBS ++LIBS="-lgeotiff -L$with_geotiff $LIBS" ++cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++/* Override any GCC internal prototype to avoid an error. ++ Use char because int might match the return type of a GCC ++ builtin and then its argument prototype would still apply. */ ++#ifdef __cplusplus ++extern "C" ++#endif ++char XTIFFClientOpen (); ++int ++main () ++{ ++return XTIFFClientOpen (); ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 ++ ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 ++ echo "$as_me:$LINENO: \$? = $ac_status" >&5 ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ ac_cv_lib_geotiff_XTIFFClientOpen=yes ++else ++ echo "$as_me: failed program was:" >&5 ++sed 's/^/| /' conftest.$ac_ext >&5 ++ ++ ac_cv_lib_geotiff_XTIFFClientOpen=no ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++LIBS=$ac_check_lib_save_LIBS ++fi ++{ echo "$as_me:$LINENO: result: $ac_cv_lib_geotiff_XTIFFClientOpen" >&5 ++echo "${ECHO_T}$ac_cv_lib_geotiff_XTIFFClientOpen" >&6; } ++if test $ac_cv_lib_geotiff_XTIFFClientOpen = yes; then ++ GEOTIFF_SETTING=yes ++else ++ GEOTIFF_SETTING=not_found ++fi ++ ++ ++ if test $GEOTIFF_SETTING = "yes" ; then ++ GEOTIFF_LIBS="-L$with_geotiff -lgeotiff" ++ GEOTIFF_INCLUDE="-I$with_geotiff" ++ else ++ { { echo "$as_me:$LINENO: error: libgeotiff is required to build GDAL MrSID driver" >&5 ++echo "$as_me: error: libgeotiff is required to build GDAL MrSID driver" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ fi ++ echo "using libgeotiff from $with_geotiff." ++ fi ++ LIBS="$GEOTIFF_LIBS $LIBS" ++fi ++ ++GEOTIFF_INCLUDE=$GEOTIFF_INCLUDE ++ ++ ++ ++rm -f conftest* ++ ++ac_config_files="$ac_config_files Makefile" ++ ++ ++ ++test "x$prefix" = xNONE && prefix=$ac_default_prefix ++# Let make expand exec_prefix. ++test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' ++ ++# Transform confdefs.h into DEFS. ++# Protect against shell expansion while executing Makefile rules. ++# Protect against Makefile macro expansion. ++# ++# If the first sed substitution is executed (which looks for macros that ++# take arguments), then branch to the quote section. Otherwise, ++# look for a macro that doesn't take arguments. ++ac_script=' ++t clear ++:clear ++s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g ++t quote ++s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g ++t quote ++b any ++:quote ++s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g ++s/\[/\\&/g ++s/\]/\\&/g ++s/\$/$$/g ++H ++:any ++${ ++ g ++ s/^\n// ++ s/\n/ /g ++ p ++} ++' ++DEFS=`sed -n "$ac_script" confdefs.h` ++ ++ ++ac_libobjs= ++ac_ltlibobjs= ++for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue ++ # 1. Remove the extension, and $U if already installed. ++ ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ++ ac_i=`echo "$ac_i" | sed "$ac_script"` ++ # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR ++ # will be set to the directory where LIBOBJS objects are built. ++ ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ++ ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' ++done ++LIBOBJS=$ac_libobjs ++ ++LTLIBOBJS=$ac_ltlibobjs ++ ++ ++ ++: ${CONFIG_STATUS=./config.status} ++ac_clean_files_save=$ac_clean_files ++ac_clean_files="$ac_clean_files $CONFIG_STATUS" ++{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 ++echo "$as_me: creating $CONFIG_STATUS" >&6;} ++cat >$CONFIG_STATUS <<_ACEOF ++#! $SHELL ++# Generated by $as_me. ++# Run this file to recreate the current configuration. ++# Compiler output produced by configure, useful for debugging ++# configure, is in config.log if it exists. ++ ++debug=false ++ac_cs_recheck=false ++ac_cs_silent=false ++SHELL=\${CONFIG_SHELL-$SHELL} ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++## --------------------- ## ++## M4sh Initialization. ## ++## --------------------- ## ++ ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh ++if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ++ emulate sh ++ NULLCMD=: ++ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ++ # is contrary to our usage. Disable this feature. ++ alias -g '${1+"$@"}'='"$@"' ++ setopt NO_GLOB_SUBST ++else ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ ++fi ++ ++ ++ ++ ++# PATH needs CR ++# Avoid depending upon Character Ranges. ++as_cr_letters='abcdefghijklmnopqrstuvwxyz' ++as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ++as_cr_Letters=$as_cr_letters$as_cr_LETTERS ++as_cr_digits='0123456789' ++as_cr_alnum=$as_cr_Letters$as_cr_digits ++ ++# The user is always right. ++if test "${PATH_SEPARATOR+set}" != set; then ++ echo "#! /bin/sh" >conf$$.sh ++ echo "exit 0" >>conf$$.sh ++ chmod +x conf$$.sh ++ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ++ PATH_SEPARATOR=';' ++ else ++ PATH_SEPARATOR=: ++ fi ++ rm -f conf$$.sh ++fi ++ ++# Support unset when possible. ++if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then ++ as_unset=unset ++else ++ as_unset=false ++fi ++ ++ ++# IFS ++# We need space, tab and new line, in precisely that order. Quoting is ++# there to prevent editors from complaining about space-tab. ++# (If _AS_PATH_WALK were called with IFS unset, it would disable word ++# splitting by setting IFS to empty value.) ++as_nl=' ++' ++IFS=" "" $as_nl" ++ ++# Find who we are. Look in the path if we contain no directory separator. ++case $0 in ++ *[\\/]* ) as_myself=$0 ;; ++ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ++done ++IFS=$as_save_IFS ++ ++ ;; ++esac ++# We did not find ourselves, most probably we were run as `sh COMMAND' ++# in which case we are not to be found in the path. ++if test "x$as_myself" = x; then ++ as_myself=$0 ++fi ++if test ! -f "$as_myself"; then ++ echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ++ { (exit 1); exit 1; } ++fi ++ ++# Work around bugs in pre-3.0 UWIN ksh. ++for as_var in ENV MAIL MAILPATH ++do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++done ++PS1='$ ' ++PS2='> ' ++PS4='+ ' ++ ++# NLS nuisances. ++for as_var in \ ++ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ++ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ++ LC_TELEPHONE LC_TIME ++do ++ if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ++ eval $as_var=C; export $as_var ++ else ++ ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ++ fi ++done ++ ++# Required to use basename. ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ++ as_basename=basename ++else ++ as_basename=false ++fi ++ ++ ++# Name of the executable. ++as_me=`$as_basename -- "$0" || ++$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ++ X"$0" : 'X\(//\)$' \| \ ++ X"$0" : 'X\(/\)' \| . 2>/dev/null || ++echo X/"$0" | ++ sed '/^.*\/\([^/][^/]*\)\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\/\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ ++# CDPATH. ++$as_unset CDPATH ++ ++ ++ ++ as_lineno_1=$LINENO ++ as_lineno_2=$LINENO ++ test "x$as_lineno_1" != "x$as_lineno_2" && ++ test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { ++ ++ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO ++ # uniformly replaced by the line number. The first 'sed' inserts a ++ # line-number line after each line using $LINENO; the second 'sed' ++ # does the real work. The second script uses 'N' to pair each ++ # line-number line with the line containing $LINENO, and appends ++ # trailing '-' during substitution so that $LINENO is not a special ++ # case at line end. ++ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ++ # scripts with optimization help from Paolo Bonzini. Blame Lee ++ # E. McMahon (1931-1989) for sed's syntax. :-) ++ sed -n ' ++ p ++ /[$]LINENO/= ++ ' <$as_myself | ++ sed ' ++ s/[$]LINENO.*/&-/ ++ t lineno ++ b ++ :lineno ++ N ++ :loop ++ s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ ++ t loop ++ s/-\n.*// ++ ' >$as_me.lineno && ++ chmod +x "$as_me.lineno" || ++ { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 ++ { (exit 1); exit 1; }; } ++ ++ # Don't try to exec as it changes $[0], causing all sort of problems ++ # (the dirname of $[0] is not the place where we might find the ++ # original and so on. Autoconf is especially sensitive to this). ++ . "./$as_me.lineno" ++ # Exit status is that of the last command. ++ exit ++} ++ ++ ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ++ as_dirname=dirname ++else ++ as_dirname=false ++fi ++ ++ECHO_C= ECHO_N= ECHO_T= ++case `echo -n x` in ++-n*) ++ case `echo 'x\c'` in ++ *c*) ECHO_T=' ';; # ECHO_T is single tab character. ++ *) ECHO_C='\c';; ++ esac;; ++*) ++ ECHO_N='-n';; ++esac ++ ++if expr a : '\(a\)' >/dev/null 2>&1 && ++ test "X`expr 00001 : '.*\(...\)'`" = X001; then ++ as_expr=expr ++else ++ as_expr=false ++fi ++ ++rm -f conf$$ conf$$.exe conf$$.file ++if test -d conf$$.dir; then ++ rm -f conf$$.dir/conf$$.file ++else ++ rm -f conf$$.dir ++ mkdir conf$$.dir ++fi ++echo >conf$$.file ++if ln -s conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s='ln -s' ++ # ... but there are two gotchas: ++ # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ++ # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ++ # In both cases, we have to default to `cp -p'. ++ ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || ++ as_ln_s='cp -p' ++elif ln conf$$.file conf$$ 2>/dev/null; then ++ as_ln_s=ln ++else ++ as_ln_s='cp -p' ++fi ++rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file ++rmdir conf$$.dir 2>/dev/null ++ ++if mkdir -p . 2>/dev/null; then ++ as_mkdir_p=: ++else ++ test -d ./-p && rmdir ./-p ++ as_mkdir_p=false ++fi ++ ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' ++else ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' ++fi ++as_executable_p=$as_test_x ++ ++# Sed expression to map a string onto a valid CPP name. ++as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" ++ ++# Sed expression to map a string onto a valid variable name. ++as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" ++ ++ ++exec 6>&1 ++ ++# Save the log message, to keep $[0] and so on meaningful, and to ++# report actual input values of CONFIG_FILES etc. instead of their ++# values after options handling. ++ac_log=" ++This file was extended by $as_me, which was ++generated by GNU Autoconf 2.61. Invocation command line was ++ ++ CONFIG_FILES = $CONFIG_FILES ++ CONFIG_HEADERS = $CONFIG_HEADERS ++ CONFIG_LINKS = $CONFIG_LINKS ++ CONFIG_COMMANDS = $CONFIG_COMMANDS ++ $ $0 $@ ++ ++on `(hostname || uname -n) 2>/dev/null | sed 1q` ++" ++ ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<_ACEOF ++# Files that config.status was made for. ++config_files="$ac_config_files" ++ ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++ac_cs_usage="\ ++\`$as_me' instantiates files from templates according to the ++current configuration. ++ ++Usage: $0 [OPTIONS] [FILE]... ++ ++ -h, --help print this help, then exit ++ -V, --version print version number and configuration settings, then exit ++ -q, --quiet do not print progress messages ++ -d, --debug don't remove temporary files ++ --recheck update $as_me by reconfiguring in the same conditions ++ --file=FILE[:TEMPLATE] ++ instantiate the configuration file FILE ++ ++Configuration files: ++$config_files ++ ++Report bugs to ." ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++ac_cs_version="\\ ++config.status ++configured by $0, generated by GNU Autoconf 2.61, ++ with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" ++ ++Copyright (C) 2006 Free Software Foundation, Inc. ++This config.status script is free software; the Free Software Foundation ++gives unlimited permission to copy, distribute and modify it." ++ ++ac_pwd='$ac_pwd' ++srcdir='$srcdir' ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++# If no file are specified by the user, then we need to provide default ++# value. By we need to know if files were specified by the user. ++ac_need_defaults=: ++while test $# != 0 ++do ++ case $1 in ++ --*=*) ++ ac_option=`expr "X$1" : 'X\([^=]*\)='` ++ ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ++ ac_shift=: ++ ;; ++ *) ++ ac_option=$1 ++ ac_optarg=$2 ++ ac_shift=shift ++ ;; ++ esac ++ ++ case $ac_option in ++ # Handling of the options. ++ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ++ ac_cs_recheck=: ;; ++ --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) ++ echo "$ac_cs_version"; exit ;; ++ --debug | --debu | --deb | --de | --d | -d ) ++ debug=: ;; ++ --file | --fil | --fi | --f ) ++ $ac_shift ++ CONFIG_FILES="$CONFIG_FILES $ac_optarg" ++ ac_need_defaults=false;; ++ --he | --h | --help | --hel | -h ) ++ echo "$ac_cs_usage"; exit ;; ++ -q | -quiet | --quiet | --quie | --qui | --qu | --q \ ++ | -silent | --silent | --silen | --sile | --sil | --si | --s) ++ ac_cs_silent=: ;; ++ ++ # This is an error. ++ -*) { echo "$as_me: error: unrecognized option: $1 ++Try \`$0 --help' for more information." >&2 ++ { (exit 1); exit 1; }; } ;; ++ ++ *) ac_config_targets="$ac_config_targets $1" ++ ac_need_defaults=false ;; ++ ++ esac ++ shift ++done ++ ++ac_configure_extra_args= ++ ++if $ac_cs_silent; then ++ exec 6>/dev/null ++ ac_configure_extra_args="$ac_configure_extra_args --silent" ++fi ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++if \$ac_cs_recheck; then ++ echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 ++ CONFIG_SHELL=$SHELL ++ export CONFIG_SHELL ++ exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion ++fi ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF ++exec 5>>config.log ++{ ++ echo ++ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ++## Running $as_me. ## ++_ASBOX ++ echo "$ac_log" ++} >&5 ++ ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++ ++# Handling of arguments. ++for ac_config_target in $ac_config_targets ++do ++ case $ac_config_target in ++ "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; ++ ++ *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 ++echo "$as_me: error: invalid argument: $ac_config_target" >&2;} ++ { (exit 1); exit 1; }; };; ++ esac ++done ++ ++ ++# If the user did not use the arguments to specify the items to instantiate, ++# then the envvar interface is used. Set only those that are not. ++# We use the long form for the default assignment because of an extremely ++# bizarre bug on SunOS 4.1.3. ++if $ac_need_defaults; then ++ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files ++fi ++ ++# Have a temporary directory for convenience. Make it in the build tree ++# simply because there is no reason against having it here, and in addition, ++# creating and moving files from /tmp can sometimes cause problems. ++# Hook for its removal unless debugging. ++# Note that there is a small window in which the directory will not be cleaned: ++# after its creation but before its name has been assigned to `$tmp'. ++$debug || ++{ ++ tmp= ++ trap 'exit_status=$? ++ { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ++' 0 ++ trap '{ (exit 1); exit 1; }' 1 2 13 15 ++} ++# Create a (secure) tmp directory for tmp files. ++ ++{ ++ tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && ++ test -n "$tmp" && test -d "$tmp" ++} || ++{ ++ tmp=./conf$$-$RANDOM ++ (umask 077 && mkdir "$tmp") ++} || ++{ ++ echo "$me: cannot create a temporary directory in ." >&2 ++ { (exit 1); exit 1; } ++} ++ ++# ++# Set up the sed scripts for CONFIG_FILES section. ++# ++ ++# No need to generate the scripts if there are no CONFIG_FILES. ++# This happens for instance when ./config.status config.h ++if test -n "$CONFIG_FILES"; then ++ ++_ACEOF ++ ++ ++ ++ac_delim='%!_!# ' ++for ac_last_try in false false false false false :; do ++ cat >conf$$subs.sed <<_ACEOF ++SHELL!$SHELL$ac_delim ++PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim ++PACKAGE_NAME!$PACKAGE_NAME$ac_delim ++PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim ++PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim ++PACKAGE_STRING!$PACKAGE_STRING$ac_delim ++PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim ++exec_prefix!$exec_prefix$ac_delim ++prefix!$prefix$ac_delim ++program_transform_name!$program_transform_name$ac_delim ++bindir!$bindir$ac_delim ++sbindir!$sbindir$ac_delim ++libexecdir!$libexecdir$ac_delim ++datarootdir!$datarootdir$ac_delim ++datadir!$datadir$ac_delim ++sysconfdir!$sysconfdir$ac_delim ++sharedstatedir!$sharedstatedir$ac_delim ++localstatedir!$localstatedir$ac_delim ++includedir!$includedir$ac_delim ++oldincludedir!$oldincludedir$ac_delim ++docdir!$docdir$ac_delim ++infodir!$infodir$ac_delim ++htmldir!$htmldir$ac_delim ++dvidir!$dvidir$ac_delim ++pdfdir!$pdfdir$ac_delim ++psdir!$psdir$ac_delim ++libdir!$libdir$ac_delim ++localedir!$localedir$ac_delim ++mandir!$mandir$ac_delim ++DEFS!$DEFS$ac_delim ++ECHO_C!$ECHO_C$ac_delim ++ECHO_N!$ECHO_N$ac_delim ++ECHO_T!$ECHO_T$ac_delim ++LIBS!$LIBS$ac_delim ++build_alias!$build_alias$ac_delim ++host_alias!$host_alias$ac_delim ++target_alias!$target_alias$ac_delim ++CC!$CC$ac_delim ++CFLAGS!$CFLAGS$ac_delim ++LDFLAGS!$LDFLAGS$ac_delim ++CPPFLAGS!$CPPFLAGS$ac_delim ++ac_ct_CC!$ac_ct_CC$ac_delim ++EXEEXT!$EXEEXT$ac_delim ++OBJEXT!$OBJEXT$ac_delim ++CXX!$CXX$ac_delim ++CXXFLAGS!$CXXFLAGS$ac_delim ++ac_ct_CXX!$ac_ct_CXX$ac_delim ++RANLIB!$RANLIB$ac_delim ++CXX_PIC!$CXX_PIC$ac_delim ++C_PIC!$C_PIC$ac_delim ++LD_SHARED!$LD_SHARED$ac_delim ++SO_EXT!$SO_EXT$ac_delim ++CXX_WFLAGS!$CXX_WFLAGS$ac_delim ++C_WFLAGS!$C_WFLAGS$ac_delim ++GDAL_CONFIG!$GDAL_CONFIG$ac_delim ++GDAL_INC!$GDAL_INC$ac_delim ++AUTOLOAD_DIR!$AUTOLOAD_DIR$ac_delim ++MRSID_INCLUDE!$MRSID_INCLUDE$ac_delim ++MRSID_FLAGS!$MRSID_FLAGS$ac_delim ++GEOTIFF_INCLUDE!$GEOTIFF_INCLUDE$ac_delim ++LIBOBJS!$LIBOBJS$ac_delim ++LTLIBOBJS!$LTLIBOBJS$ac_delim ++_ACEOF ++ ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 62; then ++ break ++ elif $ac_last_try; then ++ { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ++echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ++ { (exit 1); exit 1; }; } ++ else ++ ac_delim="$ac_delim!$ac_delim _$ac_delim!! " ++ fi ++done ++ ++ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ++if test -n "$ac_eof"; then ++ ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ++ ac_eof=`expr $ac_eof + 1` ++fi ++ ++cat >>$CONFIG_STATUS <<_ACEOF ++cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof ++/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end ++_ACEOF ++sed ' ++s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g ++s/^/s,@/; s/!/@,|#_!!_#|/ ++:n ++t n ++s/'"$ac_delim"'$/,g/; t ++s/$/\\/; p ++N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n ++' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF ++:end ++s/|#_!!_#|//g ++CEOF$ac_eof ++_ACEOF ++ ++ ++# VPATH may cause trouble with some makes, so we remove $(srcdir), ++# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and ++# trailing colons and then remove the whole line if VPATH becomes empty ++# (actually we leave an empty line to preserve line numbers). ++if test "x$srcdir" = x.; then ++ ac_vpsub='/^[ ]*VPATH[ ]*=/{ ++s/:*\$(srcdir):*/:/ ++s/:*\${srcdir}:*/:/ ++s/:*@srcdir@:*/:/ ++s/^\([^=]*=[ ]*\):*/\1/ ++s/:*$// ++s/^[^=]*=[ ]*$// ++}' ++fi ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++fi # test -n "$CONFIG_FILES" ++ ++ ++for ac_tag in :F $CONFIG_FILES ++do ++ case $ac_tag in ++ :[FHLC]) ac_mode=$ac_tag; continue;; ++ esac ++ case $ac_mode$ac_tag in ++ :[FHL]*:*);; ++ :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 ++echo "$as_me: error: Invalid tag $ac_tag." >&2;} ++ { (exit 1); exit 1; }; };; ++ :[FH]-) ac_tag=-:-;; ++ :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; ++ esac ++ ac_save_IFS=$IFS ++ IFS=: ++ set x $ac_tag ++ IFS=$ac_save_IFS ++ shift ++ ac_file=$1 ++ shift ++ ++ case $ac_mode in ++ :L) ac_source=$1;; ++ :[FH]) ++ ac_file_inputs= ++ for ac_f ++ do ++ case $ac_f in ++ -) ac_f="$tmp/stdin";; ++ *) # Look for the file first in the build tree, then in the source tree ++ # (if the path is not absolute). The absolute path cannot be DOS-style, ++ # because $ac_f cannot contain `:'. ++ test -f "$ac_f" || ++ case $ac_f in ++ [\\/$]*) false;; ++ *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; ++ esac || ++ { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 ++echo "$as_me: error: cannot find input file: $ac_f" >&2;} ++ { (exit 1); exit 1; }; };; ++ esac ++ ac_file_inputs="$ac_file_inputs $ac_f" ++ done ++ ++ # Let's still pretend it is `configure' which instantiates (i.e., don't ++ # use $as_me), people would be surprised to read: ++ # /* config.h. Generated by config.status. */ ++ configure_input="Generated from "`IFS=: ++ echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." ++ if test x"$ac_file" != x-; then ++ configure_input="$ac_file. $configure_input" ++ { echo "$as_me:$LINENO: creating $ac_file" >&5 ++echo "$as_me: creating $ac_file" >&6;} ++ fi ++ ++ case $ac_tag in ++ *:-:* | *:-) cat >"$tmp/stdin";; ++ esac ++ ;; ++ esac ++ ++ ac_dir=`$as_dirname -- "$ac_file" || ++$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$ac_file" : 'X\(//\)[^/]' \| \ ++ X"$ac_file" : 'X\(//\)$' \| \ ++ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || ++echo X"$ac_file" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ { as_dir="$ac_dir" ++ case $as_dir in #( ++ -*) as_dir=./$as_dir;; ++ esac ++ test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { ++ as_dirs= ++ while :; do ++ case $as_dir in #( ++ *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( ++ *) as_qdir=$as_dir;; ++ esac ++ as_dirs="'$as_qdir' $as_dirs" ++ as_dir=`$as_dirname -- "$as_dir" || ++$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$as_dir" : 'X\(//\)[^/]' \| \ ++ X"$as_dir" : 'X\(//\)$' \| \ ++ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || ++echo X"$as_dir" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q'` ++ test -d "$as_dir" && break ++ done ++ test -z "$as_dirs" || eval "mkdir $as_dirs" ++ } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 ++echo "$as_me: error: cannot create directory $as_dir" >&2;} ++ { (exit 1); exit 1; }; }; } ++ ac_builddir=. ++ ++case "$ac_dir" in ++.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; ++*) ++ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ++ # A ".." for each directory in $ac_dir_suffix. ++ ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ++ case $ac_top_builddir_sub in ++ "") ac_top_builddir_sub=. ac_top_build_prefix= ;; ++ *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; ++ esac ;; ++esac ++ac_abs_top_builddir=$ac_pwd ++ac_abs_builddir=$ac_pwd$ac_dir_suffix ++# for backward compatibility: ++ac_top_builddir=$ac_top_build_prefix ++ ++case $srcdir in ++ .) # We are building in place. ++ ac_srcdir=. ++ ac_top_srcdir=$ac_top_builddir_sub ++ ac_abs_top_srcdir=$ac_pwd ;; ++ [\\/]* | ?:[\\/]* ) # Absolute name. ++ ac_srcdir=$srcdir$ac_dir_suffix; ++ ac_top_srcdir=$srcdir ++ ac_abs_top_srcdir=$srcdir ;; ++ *) # Relative name. ++ ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ++ ac_top_srcdir=$ac_top_build_prefix$srcdir ++ ac_abs_top_srcdir=$ac_pwd/$srcdir ;; ++esac ++ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix ++ ++ ++ case $ac_mode in ++ :F) ++ # ++ # CONFIG_FILE ++ # ++ ++_ACEOF ++ ++cat >>$CONFIG_STATUS <<\_ACEOF ++# If the template does not know about datarootdir, expand it. ++# FIXME: This hack should be removed a few years after 2.60. ++ac_datarootdir_hack=; ac_datarootdir_seen= ++ ++case `sed -n '/datarootdir/ { ++ p ++ q ++} ++/@datadir@/p ++/@docdir@/p ++/@infodir@/p ++/@localedir@/p ++/@mandir@/p ++' $ac_file_inputs` in ++*datarootdir*) ac_datarootdir_seen=yes;; ++*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) ++ { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ++echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} ++_ACEOF ++cat >>$CONFIG_STATUS <<_ACEOF ++ ac_datarootdir_hack=' ++ s&@datadir@&$datadir&g ++ s&@docdir@&$docdir&g ++ s&@infodir@&$infodir&g ++ s&@localedir@&$localedir&g ++ s&@mandir@&$mandir&g ++ s&\\\${datarootdir}&$datarootdir&g' ;; ++esac ++_ACEOF ++ ++# Neutralize VPATH when `$srcdir' = `.'. ++# Shell code in configure.ac might set extrasub. ++# FIXME: do we really want to maintain this feature? ++cat >>$CONFIG_STATUS <<_ACEOF ++ sed "$ac_vpsub ++$extrasub ++_ACEOF ++cat >>$CONFIG_STATUS <<\_ACEOF ++:t ++/@[a-zA-Z_][a-zA-Z_0-9]*@/!b ++s&@configure_input@&$configure_input&;t t ++s&@top_builddir@&$ac_top_builddir_sub&;t t ++s&@srcdir@&$ac_srcdir&;t t ++s&@abs_srcdir@&$ac_abs_srcdir&;t t ++s&@top_srcdir@&$ac_top_srcdir&;t t ++s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t ++s&@builddir@&$ac_builddir&;t t ++s&@abs_builddir@&$ac_abs_builddir&;t t ++s&@abs_top_builddir@&$ac_abs_top_builddir&;t t ++$ac_datarootdir_hack ++" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out ++ ++test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && ++ { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && ++ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && ++ { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined." >&5 ++echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined." >&2;} ++ ++ rm -f "$tmp/stdin" ++ case $ac_file in ++ -) cat "$tmp/out"; rm -f "$tmp/out";; ++ *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; ++ esac ++ ;; ++ ++ ++ ++ esac ++ ++done # for ac_tag ++ ++ ++{ (exit 0); exit 0; } ++_ACEOF ++chmod +x $CONFIG_STATUS ++ac_clean_files=$ac_clean_files_save ++ ++ ++# configure is writing to config.log, and then calls config.status. ++# config.status does its own redirection, appending to config.log. ++# Unfortunately, on DOS this fails, as config.log is still kept open ++# by configure, so config.status won't be able to write to it; its ++# output is simply discarded. So we exec the FD to /dev/null, ++# effectively closing config.log, so it can be properly (re)opened and ++# appended to by config.status. When coming back to configure, we ++# need to make the FD available again. ++if test "$no_create" != yes; then ++ ac_cs_success=: ++ ac_config_status_args= ++ test "$silent" = yes && ++ ac_config_status_args="$ac_config_status_args --quiet" ++ exec 5>/dev/null ++ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false ++ exec 5>>config.log ++ # Use ||, not &&, to avoid exiting from the if with $? = 1, which ++ # would make configure fail if this is the last instruction. ++ $ac_cs_success || { (exit 1); exit 1; } ++fi ++ +--- /dev/null ++++ b/frmts/mrsid/pkg/configure.in +@@ -0,0 +1,280 @@ ++dnl *************************************************************************** ++dnl $Id: configure.in 9971 2006-08-23 20:06:02Z fwarmerdam $ ++dnl ++dnl Project: GDAL MrSID Plugin ++dnl Purpose: Configure source file. ++dnl Author: Frank Warmerdam, warmerdam@pobox.com ++dnl Changed by: Alan Boudreault, aboudreault@mapgears.com on the basis of ++dnl GDAL GRASS Plugin ++dnl ++dnl *************************************************************************** ++dnl Copyright (c) 2005, Frank Warmerdam ++dnl Copyright (c) 2008, Alan Boudreault ++dnl ++dnl Permission is hereby granted, free of charge, to any person obtaining a ++dnl copy of this software and associated documentation files (the "Software"), ++dnl to deal in the Software without restriction, including without limitation ++dnl the rights to use, copy, modify, merge, publish, distribute, sublicense, ++dnl and/or sell copies of the Software, and to permit persons to whom the ++dnl Software is furnished to do so, subject to the following conditions: ++dnl ++dnl The above copyright notice and this permission notice shall be included ++dnl in all copies or substantial portions of the Software. ++dnl ++dnl THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ++dnl OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ++dnl FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL ++dnl THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ++dnl LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING ++dnl FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER ++dnl DEALINGS IN THE SOFTWARE. ++dnl *************************************************************************** ++ ++dnl Disable configure caching ... it causes lots of hassles. ++define([AC_CACHE_LOAD], ) ++define([AC_CACHE_SAVE], ) ++ ++dnl Process this file with autoconf to produce a configure script. ++AC_INIT(Makefile.in) ++ ++dnl We require autoconf 2.52+ for libtool support on cygwin/mingw hosts ++AC_PREREQ(2.52) ++ ++dnl Checks for programs. ++AC_PROG_CC ++AC_PROG_CXX ++ ++AC_PROG_RANLIB ++AC_COMPILER_PIC ++AC_LD_SHARED ++AC_COMPILER_WFLAGS ++ ++dnl --------------------------------------------------------------------------- ++dnl Find GDAL ++dnl --------------------------------------------------------------------------- ++ ++AC_ARG_WITH(gdal, ++[ --with-gdal[=PATH] GDAL (PATH is path to gdal-config)],,) ++ ++if test "$with_gdal" = "yes" -o "$with_gdal" = "" ; then ++ ++ if test "`basename xx/$with_gdal`" = "gdal-config" ; then ++ GDAL_CONFIG="$with_gdal" ++ fi ++ ++ if test -z "$GDAL_CONFIG" ; then ++ AC_PATH_PROG(GDAL_CONFIG, gdal-config, no) ++ fi ++ ++ if test "$GDAL_CONFIG" = "no" ; then ++ AC_MSG_ERROR([couldn't find gdal-config]) ++ fi ++ ++elif test -n "$with_gdal" -a "$with_gdal" != "no" ; then ++ ++ GDAL_CONFIG=$with_gdal ++ ++ if test -f "$GDAL_CONFIG" -a -x "$GDAL_CONFIG" ; then ++ AC_MSG_RESULT([user supplied gdal-config ($GDAL_CONFIG)]) ++ else ++ AC_MSG_ERROR(['$GDAL_CONFIG' is not an executable. Make sure you use --with-gdal=/path/to/gdal-config]) ++ fi ++ ++else ++ ++ AC_MSG_ERROR([gdal required to build GDAL MrSID driver]) ++ ++fi ++ ++LIBS="`$GDAL_CONFIG --libs` $LIBS" ++GDAL_INC=`$GDAL_CONFIG --cflags` ++ ++AC_SUBST(GDAL_INC, $GDAL_INC) ++ ++dnl --------------------------------------------------------------------------- ++dnl Where to put driver? ++dnl --------------------------------------------------------------------------- ++AC_ARG_WITH(autoload,[ --with-autoload[=DIR] Directory for autoload drivers],,) ++ ++if test "$with_autoload" != "" ; then ++ AUTOLOAD_DIR=$with_autoload ++else ++ if $GDAL_CONFIG --autoload > /dev/null 2>&1 ; then ++ AUTOLOAD_DIR=`$GDAL_CONFIG --autoload` ++ else ++ AUTOLOAD_DIR=`$GDAL_CONFIG --prefix`/lib/gdalplugins ++ fi ++fi ++ ++AC_MSG_RESULT(using $AUTOLOAD_DIR as GDAL shared library autoload directory) ++AC_SUBST(AUTOLOAD_DIR,$AUTOLOAD_DIR) ++ ++dnl --------------------------------------------------------------------------- ++dnl Find MrSID stuff ++dnl --------------------------------------------------------------------------- ++ ++MRSID_INCLUDE= ++MRSID_FLAGS= ++MRSID_SETTING=no ++HAVE_KAKADU=no ++ ++AC_ARG_WITH(mrsid,[ --with-mrsid[=ARG] Include MrSID support (ARG=path to MrSID DSDK or no)],,) ++ ++AC_ARG_WITH(jp2mrsid,[ --with-jp2mrsid[=ARG] Enable MrSID JPEG2000 support (ARG=yes/no)],,) ++ ++if test "x$with_mrsid" = "xno" -o "x$with_mrsid" = "x" ; then ++ ++ AC_MSG_ERROR([MrSID DSDK is required to build GDAL MrSID driver]) ++ ++else ++ ++ MRSID_BASE="$with_mrsid/include" ++ ++ AC_MSG_CHECKING([for lt_base.h in $MRSID_BASE/support]) ++ if test -r "$MRSID_BASE/support/lt_base.h" ; then ++ ++ AC_MSG_RESULT([found MrSID DSDK version 4.x or newer.]) ++ MRSID_SETTING=yes ++ MRSID_INCLUDE="-I$MRSID_BASE/base -I$MRSID_BASE/metadata -I$MRSID_BASE/mrsid_readers -I$MRSID_BASE/j2k_readers -I$MRSID_BASE/support" ++ ++ else ++ ++ AC_MSG_RESULT([not found.]) ++ ++ AC_MSG_CHECKING([for lt_base.h in $MRSID_BASE]) ++ if test -r "$MRSID_BASE/lt_base.h" ; then ++ ++ AC_MSG_RESULT([found MrSID DSDK version 7.x or newer.]); ++ MRSID_SETTING=yes ++ MRSID_INCLUDE="-I$MRSID_BASE" ++ ++ fi ++ ++ fi ++ ++ if test $MRSID_SETTING = yes ; then ++ ++ MRSID_LIBS="-lltidsdk -lpthread" ++ ++ AC_MSG_CHECKING([for MG3ImageWriter.h in $with_mrsid/include/mrsid_writers]) ++ if test -r "$with_mrsid/include/mrsid_writers/MG3ImageWriter.h" ; then ++ AC_MSG_RESULT([found MrSID ESDK version 4.x or newer.]) ++ MRSID_FLAGS="-DMRSID_ESDK $MRSID_FLAGS" ++ MRSID_INCLUDE="-I$with_mrsid/include/mrsid_writers -I$with_mrsid/include/j2k_writers $MRSID_INCLUDE" ++ if test -r $with_mrsid/3rd-party/lib/Release/libcryptopp.a ; then ++ MRSID_LIBS="-lltiesdk -lcryptopp -lxmlparse $MRSID_LIBS" ++ else ++ MRSID_LIBS="-lltiesdk -lxmlparse $MRSID_LIBS" ++ fi ++ else ++ AC_MSG_RESULT([no encoding support.]) ++ fi ++ ++ AC_MSG_CHECKING([for MrSID JPEG2000 support]) ++ if test "x$with_jp2mrsid" = "xyes" -a "$HAVE_KAKADU" = "yes" ; then ++ AC_MSG_ERROR([MrSID JPEG2000 support requested, but this is incompatible with use of standalone Kakadu]) ++ fi ++ ++ MRSID_KAKADU_LIB= ++ if test "$HAVE_KAKADU" = "no" ; then ++ if test x"$with_jp2mrsid" = x"" -o x"$with_jp2mrsid" = x"yes" ; then ++ if test -r $with_mrsid/3rd-party/lib/Release/libltikdu.a ; then ++ with_jp2mrsid=yes ++ MRSID_KAKADU_LIB=-lltikdu ++ elif test -r $with_mrsid/3rd-party/lib/Release/liblt_kakadu.a ; then ++ with_jp2mrsid=yes ++ MRSID_KAKADU_LIB=-llt_kakadu ++ else ++ AC_MSG_ERROR([MrSID JPEG2000 support requested, but libltikdu.a not found.]) ++ fi ++ fi ++ fi ++ ++ if test "x$with_jp2mrsid" = "xyes" ; then ++ MRSID_LIBS="$MRSID_LIBS $MRSID_KAKADU_LIB" ++ MRSID_FLAGS="-DMRSID_J2K $MRSID_FLAGS" ++ AC_MSG_RESULT([enabled]) ++ else ++ AC_MSG_RESULT([disabled]) ++ fi ++ ++ if test -r "$with_mrsid/lib/libltidsdk.a" ; then ++ MRSID_LIBS="-L$with_mrsid/lib -L$with_mrsid/3rd-party/lib $MRSID_LIBS" ++ else ++ MRSID_LIBS="-L$with_mrsid/lib/Release -L$with_mrsid/3rd-party/lib/Release $MRSID_LIBS" ++ fi ++ ++ LIBS="$MRSID_LIBS $LIBS" ++ else ++ MRSID_SETTING=no ++ AC_MSG_RESULT([not found.]) ++ AC_MSG_ERROR([ MrSID requested, but components not found.]) ++ fi ++fi ++ ++AC_SUBST(MRSID_INCLUDE,$MRSID_INCLUDE) ++AC_SUBST(MRSID_FLAGS,$MRSID_FLAGS) ++ ++dnl --------------------------------------------------------------------------- ++dnl Select a libgeotiff library to use. ++dnl --------------------------------------------------------------------------- ++ ++GEOTIFF_INCLUDE= ++GEOTIFF_LIBS= ++GEOTIFF_SETTING=no ++ ++AC_ARG_WITH(geotiff,[ --with-geotiff=ARG Libgeotiff library to use (ARG=yes or path)],,) ++ ++if test "x$with_geotiff" = "xno" ; then ++ ++ AC_MSG_ERROR([libgeotiff is required to build GDAL MrSID driver]) ++ ++else ++ ++ GEOTIFF_SETTING=not_found ++ ++ if test "x$with_geotiff" = "xyes" -o "x$with_geotiff" = "x" ; then ++ AC_CHECK_LIB(geotiff,XTIFFClientOpen,GEOTIFF_SETTING=yes,GEOTIFF_SETTING=not_found) ++ ++ if test "$GEOTIFF_SETTING" = "yes" ; then ++ GEOTIFF_LIBS="-lgeotiff" ++ if test -d /usr/include/geotiff ; then ++ GEOTIFF_INCLUDE="-I/usr/include/geotiff" ++ fi ++ else ++ AC_MSG_ERROR([libgeotiff is required to build GDAL MrSID driver]) ++ fi ++ ++ else ++ dnl We now require libgeotiff 1.2.1 (for XTIFFClientOpen). ++ dnl first check if $with_geotiff/lib has the library: ++ AC_CHECK_LIB(geotiff,XTIFFClientOpen,GEOTIFF_SETTING=yes,GEOTIFF_SETTING=not_found, -L$with_geotiff/lib) ++ ++ if test $GEOTIFF_SETTING = "yes" ; then ++ GEOTIFF_LIBS="-L$with_geotiff/lib -lgeotiff" ++ if test -d $with_geotiff/include ; then ++ GEOTIFF_INCLUDE="-I$with_geotiff/include" ++ fi ++ else ++ dnl check if $with_geotiff itself contains the header and library (e.g. as an uninstalled build directory would) ++ AC_CHECK_LIB(geotiff,XTIFFClientOpen,GEOTIFF_SETTING=yes,GEOTIFF_SETTING=not_found,-L$with_geotiff) ++ ++ if test $GEOTIFF_SETTING = "yes" ; then ++ GEOTIFF_LIBS="-L$with_geotiff -lgeotiff" ++ GEOTIFF_INCLUDE="-I$with_geotiff" ++ else ++ AC_MSG_ERROR([libgeotiff is required to build GDAL MrSID driver]) ++ fi ++ fi ++ echo "using libgeotiff from $with_geotiff." ++ fi ++ LIBS="$GEOTIFF_LIBS $LIBS" ++fi ++ ++AC_SUBST(GEOTIFF_INCLUDE,$GEOTIFF_INCLUDE) ++ ++dnl --------------------------------------------------------------------------- ++ ++rm -f conftest* ++ ++AC_OUTPUT(Makefile) diff --git a/gdal/debian/patches/ogdi b/gdal/debian/patches/ogdi new file mode 100644 index 000000000000..34d8d8e0d7a0 --- /dev/null +++ b/gdal/debian/patches/ogdi @@ -0,0 +1,16 @@ +Description: Fix include path of ogdi library. +Author: Francesco Paolo Lovergine +Last-Update: 2010-05-13 +Forwarded: not-needed + +--- a/GDALmake.opt.in ++++ b/GDALmake.opt.in +@@ -427,7 +427,7 @@ PCRASTER_SETTING = @PCRASTER_SETTING@ + # + HAVE_LERC = @HAVE_LERC@ + +-OGDI_INCLUDE = @OGDI_INCLUDE@ ++OGDI_INCLUDE = -I/usr/include/ogdi + + PNG_SETTING = @PNG_SETTING@ + JPEG_SETTING = @JPEG_SETTING@ diff --git a/gdal/debian/patches/perl-doxyfile b/gdal/debian/patches/perl-doxyfile new file mode 100644 index 000000000000..772b8066279c --- /dev/null +++ b/gdal/debian/patches/perl-doxyfile @@ -0,0 +1,17 @@ +Description: Fix generation of classes documentation in Perl bindings doxygen stuff. +Author: Francesco Paolo Lovergine +Last-Update: 2018-01-02 +Forwarded: https://github.com/ajolma/Geo-GDAL-2.02/pull/1 +Applied-Upstream: https://github.com/ajolma/Geo-GDAL-2.02/commit/cf17a59dc1f6f14ef42047051d8efd10ffe266cc + +--- a/swig/perl/Doxyfile ++++ b/swig/perl/Doxyfile +@@ -280,7 +280,7 @@ OPTIMIZE_OUTPUT_VHDL = NO + # Note that for custom extensions you also need to set FILE_PATTERNS otherwise + # the files are not read by doxygen. + +-EXTENSION_MAPPING = ++EXTENSION_MAPPING = pm=C++ + + # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments + # according to the Markdown format, which allows for more readable diff --git a/gdal/debian/patches/perl-vendor b/gdal/debian/patches/perl-vendor new file mode 100644 index 000000000000..1e67e8979969 --- /dev/null +++ b/gdal/debian/patches/perl-vendor @@ -0,0 +1,28 @@ +Description: pass INSTALLDIRS=vendor to Makefile.PL to get stuff into the right place +Origin: vendor +Forwarded: not-needed +Author: gregor herrmann +Last-Update: 2014-07-08 + +--- a/swig/perl/Makefile ++++ b/swig/perl/Makefile +@@ -7,7 +7,7 @@ build: Makefile_Geo__GDAL + $(MAKE) -f Makefile_Geo__OSR + + Makefile_Geo__GDAL: +- perl Makefile.PL INSTALL_BASE=$(INST_PREFIX) ++ perl Makefile.PL INSTALLDIRS=vendor + + test: build + $(MAKE) -f Makefile_Geo__GDAL test +--- a/swig/perl/GNUmakefile ++++ b/swig/perl/GNUmakefile +@@ -28,7 +28,7 @@ build: Makefile_Geo__GDAL + if [ -f Makefile_Geo__GNM ]; then $(MAKE) -f Makefile_Geo__GNM; fi + + Makefile_Geo__GDAL: ${WRAPPERS} Makefile.PL +- perl Makefile.PL INSTALL_BASE=$(INST_PREFIX) ++ perl Makefile.PL INSTALLDIRS=vendor + + test: build + $(MAKE) -f Makefile_Geo__GDAL test diff --git a/gdal/debian/patches/privacy-breach-generic.patch b/gdal/debian/patches/privacy-breach-generic.patch new file mode 100644 index 000000000000..6acf30490475 --- /dev/null +++ b/gdal/debian/patches/privacy-breach-generic.patch @@ -0,0 +1,29 @@ +Description: Don't embedded external images. +Author: Bas Couwenberg +Forwarded: not-needed + +--- a/frmts/wms/frmt_wms.html ++++ b/frmts/wms/frmt_wms.html +@@ -454,19 +454,19 @@ dimension and the number of resolutions. + tile size of the cache. The following example is a sample set up for + a 19-level "Global Profile" WMS-C cache. +
gdal_translate -of PNG -outsize 500 250 metacarta_wmsc.xml metacarta_wmsc.png
+- example output ++ example output +

+ +
  • + tileservice_bmng.xml - TileService, Blue Marble NG (January)
    +

    gdal_translate -of JPEG -outsize 500 250 tileservice_bmng.xml tileservice_bmng.jpg
    +- example output ++ example output +

  • + +
  • + tileservice_nysdop2004.xml - TileService, NYSDOP 2004
    +

    gdal_translate -of JPEG -projwin -73.687030 41.262680 -73.686359 41.262345 -outsize 500 250 tileservice_nysdop2004.xml tileservice_nysdop2004.jpg
    +- example output ++ example output +

  • + +
  • diff --git a/gdal/debian/patches/privacy-breach-logo.patch b/gdal/debian/patches/privacy-breach-logo.patch new file mode 100644 index 000000000000..76f335c4ea7b --- /dev/null +++ b/gdal/debian/patches/privacy-breach-logo.patch @@ -0,0 +1,15 @@ +Description: Don't embedded external logo images. +Author: Bas Couwenberg +Forwarded: not-needed + +--- a/doc/ru/index_ru.dox ++++ b/doc/ru/index_ru.dox +@@ -123,7 +123,7 @@ or + + +-FOSS4G 2016 ++FOSS4G 2016 + + + FOSS4G 2016 основная ежегодная diff --git a/gdal/debian/patches/series b/gdal/debian/patches/series new file mode 100644 index 000000000000..7bcd0e9be0d1 --- /dev/null +++ b/gdal/debian/patches/series @@ -0,0 +1,11 @@ +ogdi +hdf4 +gdal-grass +ecw-plugin +mrsid-plugin +spatialite +java.opt +perl-vendor +privacy-breach-logo.patch +privacy-breach-generic.patch +perl-doxyfile diff --git a/gdal/debian/patches/spatialite b/gdal/debian/patches/spatialite new file mode 100644 index 000000000000..dfb2836bd8e2 --- /dev/null +++ b/gdal/debian/patches/spatialite @@ -0,0 +1,34 @@ +Description: Fix linking with sqlite3, because Debian spatialite does not embed Sqlite. +Author: Francesco Paolo Lovergine +Last-Update: 2011-05-12 +Forwarded: not-needed + +--- a/configure ++++ b/configure +@@ -31470,7 +31470,7 @@ if ${ac_cv_lib_spatialite_spatialite_ini + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lspatialite $LIBS" ++LIBS="-lspatialite -lsqlite3 $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -31534,7 +31534,7 @@ if ${ac_cv_lib_spatialite_spatialite_ini + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lspatialite -L$with_spatialite/lib -lspatialite $LIBS" ++LIBS="-lspatialite -L$with_spatialite/lib -lsqlite3 $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + +@@ -31924,7 +31924,7 @@ if ${ac_cv_lib_spatialite_spatialite_tar + $as_echo_n "(cached) " >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lspatialite $LIBS" ++LIBS="-lspatialite -lsqlite3 $LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext + /* end confdefs.h. */ + diff --git a/gdal/debian/python-gdal.install b/gdal/debian/python-gdal.install new file mode 100644 index 000000000000..5870f8285769 --- /dev/null +++ b/gdal/debian/python-gdal.install @@ -0,0 +1,23 @@ +usr/lib/python2* +usr/bin/*.py +usr/share/doc/python-gdal/examples/ +#usr/share/man/man1/epsg_tr.1 +#usr/share/man/man1/esri2wkt.1 +#usr/share/man/man1/gcps2vec.1 +#usr/share/man/man1/gcps2wld.1 +usr/share/man/man1/gdal2tiles.1 +#usr/share/man/man1/gdal2xyz.1 +#usr/share/man/man1/gdal_auth.1 +usr/share/man/man1/gdal_calc.1 +usr/share/man/man1/gdal_edit.1 +usr/share/man/man1/gdal_fillnodata.1 +usr/share/man/man1/gdal_merge.1 +usr/share/man/man1/gdal_polygonize.1 +usr/share/man/man1/gdal_proximity.1 +usr/share/man/man1/gdal_retile.1 +usr/share/man/man1/gdal_sieve.1 +usr/share/man/man1/gdalcompare.1 +usr/share/man/man1/gdalmove.1 +usr/share/man/man1/ogrmerge.1 +usr/share/man/man1/pct2rgb.1 +usr/share/man/man1/rgb2pct.1 diff --git a/gdal/debian/python-gdal.lintian-overrides b/gdal/debian/python-gdal.lintian-overrides new file mode 100644 index 000000000000..c5a82a30fece --- /dev/null +++ b/gdal/debian/python-gdal.lintian-overrides @@ -0,0 +1,9 @@ +# Man pages are automatically generated with sphinx. +hyphen-used-as-minus-sign +binary-without-manpage + +# QGIS plugins rely on .py extension, see: http://hub.qgis.org/issues/9924 +script-with-language-extension usr/bin/*.py + +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * diff --git a/gdal/debian/python3-gdal.install b/gdal/debian/python3-gdal.install new file mode 100644 index 000000000000..4606faae20a7 --- /dev/null +++ b/gdal/debian/python3-gdal.install @@ -0,0 +1 @@ +usr/lib/python3* diff --git a/gdal/debian/python3-gdal.lintian-overrides b/gdal/debian/python3-gdal.lintian-overrides new file mode 100644 index 000000000000..7b286faa1130 --- /dev/null +++ b/gdal/debian/python3-gdal.lintian-overrides @@ -0,0 +1,2 @@ +# False positive on: "(319) 369-3131" +copyright-year-in-future 3131 * diff --git a/gdal/debian/rules b/gdal/debian/rules new file mode 100755 index 000000000000..fd104a3ddbce --- /dev/null +++ b/gdal/debian/rules @@ -0,0 +1,247 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# +# Original debian package by Alessandro Amici 2002-2003. +# Currently maintained by DebianGis contributors. +# Based on: GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# Enable hardening build flags +export DEB_BUILD_MAINT_OPTIONS=hardening=+all + +# KX: don't strip debugging symbols +export DEB_BUILD_OPTIONS=nostrip + +# Workaround for proj_api.h deprecation in PROJ 6.0.0 +export DEB_CFLAGS_MAINT_APPEND=-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H + +# Disable PIE on Ubuntu where it's still problematic +VENDOR_DERIVES_FROM_UBUNTU ?= $(shell dpkg-vendor --derives-from Ubuntu && echo yes) +DISTRIBUTION_RELEASE := $(shell lsb_release -cs) + +ifeq ($(VENDOR_DERIVES_FROM_UBUNTU),yes) + ifneq (,$(filter $(DISTRIBUTION_RELEASE),trusty xenial bionic)) + export DEB_BUILD_MAINT_OPTIONS=hardening=+all,-pie + endif +endif + +include /usr/share/dpkg/pkg-info.mk + +DPKG_EXPORT_BUILDFLAGS = 1 +include /usr/share/dpkg/buildflags.mk + +UPSTREAM_VERSION = $(shell echo $(DEB_VERSION_UPSTREAM) | sed -e 's/\+.*//') + +PYVERS=2.7 3.7 +PYDEF=$(shell pyversions -dv) +PERLDEF=$(shell perl -V:version|cut -d\' -f2) +SWIGVER=$(shell swig -version |grep Version|cut -d' ' -f3|sed -e 's/\.//g') + +GDALVER=$(shell cat VERSION|sed -e 's/\./ /g') +GDAL_MAJOR=$(word 1,$(GDALVER)) +GDAL_MINOR=$(word 2,$(GDALVER)) +GDAL_PATCH=$(word 3,$(GDALVER)) + +ifeq (,$(DEB_HOST_MULTIARCH)) + DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) +endif + +ifneq ($(wildcard /usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial/libhdf5.so),) + WITH_HDF5:=--with-hdf5=/usr/lib/$(DEB_HOST_MULTIARCH)/hdf5/serial +else + WITH_HDF5:= +endif + +NJOBS := -j1 +ifneq (,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS)))) +NJOBS := -j$(subst parallel=,,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS)))) +endif + +versions: + @echo Gdal version: $(GDAL_MAJOR).$(GDAL_MINOR).$(GDAL_PATCH) + @echo Swig version: $(SWIGVER) + @echo Python default: $(PYDEF) + @echo Python versions: $(PYVERS) + @echo Perl default: $(PERLDEF) + +# +# The following targets are useful to autogen independent plugins sources +# +gdal-grass: override_dh_auto_configure gdal-grass-dist override_dh_auto_clean override_dh_clean +gdal-grass-dist: + ln -fs $(CURDIR)/GDALmake.opt-$(PYDEF) $(CURDIR)/GDALmake.opt + [ -e $(CURDIR)/GDALmake.opt ] && $(MAKE) -C $(CURDIR)/frmts/grass dist + mv $(CURDIR)/frmts/grass/libgdal-grass-*.tar.gz $(CURDIR)/.. + rm -f $(CURDIR)/GDALmake.opt + +gdal-ecw: override_dh_auto_configure gdal-ecw-dist override_dh_auto_clean override_dh_clean +gdal-ecw-dist: + ln -fs $(CURDIR)/GDALmake.opt-$(PYDEF) $(CURDIR)/GDALmake.opt + [ -e $(CURDIR)/GDALmake.opt ] && $(MAKE) -C $(CURDIR)/frmts/ecw dist + mv $(CURDIR)/frmts/ecw/libgdal-ecw-*.tar.gz $(CURDIR)/.. + rm -f $(CURDIR)/GDALmake.opt + +gdal-mrsid: override_dh_auto_configure gdal-mrsid-dist override_dh_auto_clean override_dh_clean +gdal-mrsid-dist: + ln -fs $(CURDIR)/GDALmake.opt-$(PYDEF) $(CURDIR)/GDALmake.opt + [ -e $(CURDIR)/GDALmake.opt ] && $(MAKE) -C $(CURDIR)/frmts/mrsid dist + mv $(CURDIR)/frmts/mrsid/libgdal-mrsid-*.tar.gz $(CURDIR)/.. + rm -f $(CURDIR)/GDALmake.opt + +%: + if [ "$@" != "gdal-grass" -a "$@" != "gdal-ecw" -a "$@" != "gdal-mrsid" ]; then \ + dh $@ --with autoreconf,python2,python3 --parallel ; \ + fi + +override_dh_clean: + dh_clean config.log + +override_dh_auto_clean: + [ ! -f GDALmake.opt ] || $(MAKE) distclean + rm -rf $(CURDIR)/swig/perl/*.bs $(CURDIR)/swig/perl/doc + rm -rf $(CURDIR)/swig/java/*.so $(CURDIR)/swig/java/*.o $(CURDIR)/swig/java/build/ $(CURDIR)/swig/java/*.jar $(CURDIR)/swig/java/.libs + rm -rf $(CURDIR)/.libs + rm -f GDALmake.opt-* + rm -rf $(CURDIR)/debian/tmp $(CURDIR)/debian/python-tmp + rm -rf $(CURDIR)/doc/br/html $(CURDIR)/doc/ru/html + rm -rf $(CURDIR)/frmts/o/.libs + rm -f $(CURDIR)/islibdappost310.* + +#--with-hide-internal-symbols=yes \ +#--with-rename-internal-libtiff-symbols=yes \ +#--with-rename-internal-libgeotiff-symbols=yes \ + +override_dh_auto_configure: + for V in $(PYVERS); do \ + PYTHON=/usr/bin/python$$V ./configure --prefix=/usr \ + --mandir=\$$\{prefix\}/share/man \ + --includedir=\$$\{prefix\}/include/gdal \ + --with-pic \ + --with-threads \ + --with-armadillo=yes \ + --with-cfitsio=no \ + --with-charls \ + --with-curl \ + --with-ecw=no \ + --with-epsilon=/usr \ + --with-freexl=yes \ + --with-geos \ + --with-geotiff=internal \ + --with-grass=no \ + $(WITH_HDF5) \ + --with-libjson-c=/usr \ + --with-libkml=yes \ + --with-liblzma=yes \ + --with-libtiff=internal \ + --with-mrsid=no \ + --with-mysql \ + --with-netcdf \ + --with-odbc \ + --with-ogdi \ + --with-openjpeg=no \ + --with-pg \ + --with-poppler=yes \ + --with-proj=yes \ + --with-qhull=yes \ + --with-sosi=yes \ + --with-spatialite=/usr \ + --with-sqlite3 \ + --with-webp \ + --with-xerces \ + --with-zstd \ + --with-dods-root=/usr \ + --with-java=/usr/lib/jvm/default-java \ + --with-perl \ + --with-python \ + --with-kea=/usr/bin/kea-config \ + --with-fgdb=/usr/local \ + --with-kakadu=/usr/local ; \ + mv GDALmake.opt GDALmake.opt-$$V; \ + done + +override_dh_auto_build: + cp `ls GDALmake.opt-*|tail -1` GDALmake.opt + $(MAKE) $(NJOBS) lib-target apps-target + rm -rf $(CURDIR)/swig/perl/*.c $(CURDIR)/swig/perl/*.cpp + $(MAKE) $(NJOBS) -C $(CURDIR)/swig/perl generate build doc + $(MAKE) $(NJOBS) -C $(CURDIR)/swig/java clean generate build + + # It needs pre-installing just after the building due to intermediate cleaning. + for V in $(PYVERS); do \ + cp GDALmake.opt-$$V GDALmake.opt && \ + $(MAKE) $(NJOBS) -C $(CURDIR)/swig/python clean && \ + $(MAKE) -C $(CURDIR)/swig/python generate && \ + $(MAKE) $(NJOBS) -C $(CURDIR)/swig/python build && \ + $(MAKE) $(NJOBS) -C $(CURDIR)/swig/python install DESTDIR=$(CURDIR)/debian/python-tmp; \ + done + + mkdir $(CURDIR)/html || true + $(MAKE) $(NJOBS) docs + $(MAKE) $(NJOBS) man + +override_dh_auto_install: + cp `ls GDALmake.opt-*|tail -1` GDALmake.opt + $(MAKE) $(NJOBS) install BINDINGS="perl java" DESTDIR=$(CURDIR)/debian/tmp + $(MAKE) $(NJOBS) install-docs DESTDIR=$(CURDIR)/debian/tmp \ + "INST_DOCS=\$$(prefix)/share/doc/libgdal-doc"\ + "INST_MAN=\$$(prefix)/share/man" + $(MAKE) $(NJOBS) install-man DESTDIR=$(CURDIR)/debian/tmp \ + "INST_DOCS=\$$(prefix)/share/doc/libgdal-doc"\ + "INST_MAN=\$$(prefix)/share/man" + + # install python stuff previuosly built and pre-installed + cp -a $(CURDIR)/debian/python-tmp/usr/lib/* $(CURDIR)/debian/tmp/usr/lib/. + install -o root -g root -d $(CURDIR)/debian/tmp/usr/bin + install -o root -g root -m 755 $(CURDIR)/swig/python/scripts/*.py $(CURDIR)/debian/tmp/usr/bin/. + + # java stuff + mkdir -p $(CURDIR)/debian/tmp/usr/share/java $(CURDIR)/debian/tmp/usr/lib/jni + install -o root -g root -m 644 $(CURDIR)/swig/java/gdal.jar $(CURDIR)/debian/tmp/usr/share/java/. + install -o root -g root -m 644 $(CURDIR)/debian/tmp/usr/lib/*jni.so* $(CURDIR)/debian/tmp/usr/lib/jni + rm -f $(CURDIR)/debian/tmp/usr/lib/*jni.so* + + # removing useless autogenerated man pages + rm -f $(CURDIR)/debian/tmp/usr/share/man/man1/_*_apps_.1 + + # removing license file + rm -f $(CURDIR)/debian/tmp/usr/share/gdal/LICENSE.TXT + + # removing la file + rm -f $(CURDIR)/debian/tmp/usr/lib/libgdal.la + + # removing embedded rpath in main lib + -find $(CURDIR)/debian/tmp/usr/lib -type f -name "*.so*" -exec chrpath --delete {} \; + + # copy sample programs for python-gdal + install -o root -g root -d $(CURDIR)/debian/tmp/usr/share/doc/python-gdal/examples + install -o root -g root -m 755 $(CURDIR)/swig/python/samples/*.py $(CURDIR)/debian/tmp/usr/share/doc/python-gdal/examples/. + +override_dh_install: + dh_install --autodest --list-missing + +override_dh_installchangelogs: + dh_installchangelogs NEWS + +override_dh_installdocs: + dh_installdocs -A third_party/LercLib/NOTICE + + # Remove autogenerated Doxygen files + rm -f $(CURDIR)/debian/*/usr/share/doc/libgdal-perl-doc/*/*.md5 + +override_dh_python2: + dh_python2 -X.info -ppython-gdal + dh_numpy -ppython-gdal + +override_dh_python3: + dh_python3 -X.info -ppython3-gdal + +override_dh_makeshlibs: + # Forces failure ignoring to collect new symbols on all archs + dh_makeshlibs -Xlibgdal-java -- -v$(UPSTREAM_VERSION) -c0 + # Forces failure when symbols change + #dh_makeshlibs -Xlibgdal-java -- -v$(UPSTREAM_VERSION) + +override_dh_shlibdeps: + dh_shlibdeps -L libgdal20 -l debian/libgdal20/usr/lib diff --git a/gdal/debian/source/format b/gdal/debian/source/format new file mode 100644 index 000000000000..163aaf8d82b6 --- /dev/null +++ b/gdal/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/gdal/debian/source/lintian-overrides b/gdal/debian/source/lintian-overrides new file mode 100644 index 000000000000..d9d977566ec9 --- /dev/null +++ b/gdal/debian/source/lintian-overrides @@ -0,0 +1,3 @@ +# Not worth the effort +testsuite-autopkgtest-missing + diff --git a/gdal/debian/tests/control b/gdal/debian/tests/control new file mode 100644 index 000000000000..3b18c6d7a38d --- /dev/null +++ b/gdal/debian/tests/control @@ -0,0 +1,3 @@ +# Test installability +Depends: @ +Test-Command: /bin/true diff --git a/gdal/debian/upstream/metadata b/gdal/debian/upstream/metadata new file mode 100644 index 000000000000..a1c8484b7801 --- /dev/null +++ b/gdal/debian/upstream/metadata @@ -0,0 +1,6 @@ +--- +Bug-Database: https://github.com/OSGeo/gdal/issues +Bug-Submit: https://github.com/OSGeo/gdal/issues/new +Name: GDAL +Repository: https://github.com/OSGeo/gdal.git +Repository-Browse: https://github.com/OSGeo/gdal diff --git a/gdal/debian/watch b/gdal/debian/watch new file mode 100644 index 000000000000..4392bc00a173 --- /dev/null +++ b/gdal/debian/watch @@ -0,0 +1,7 @@ +version=3 +opts=\ +dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ +uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\ +repacksuffix=+dfsg \ +https://download.osgeo.org/gdal/(\d+\.\d+\.\d+)/ \ +(?:|.*/)gdal(?:[_\-]v?|)(\d\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz) diff --git a/gdal/frmts/coasp/coasp_dataset.cpp b/gdal/frmts/coasp/coasp_dataset.cpp index 1f6e18558dc3..40225347b0c7 100644 --- a/gdal/frmts/coasp/coasp_dataset.cpp +++ b/gdal/frmts/coasp/coasp_dataset.cpp @@ -388,9 +388,6 @@ GDALDataset *COASPDataset::Open( GDALOpenInfo *poOpenInfo ) /* Create a fresh dataset for us to work with */ COASPDataset *poDS = new COASPDataset(); - if (poDS == nullptr) - return nullptr; - /* Steal the file pointer for the header */ poDS->fpHdr = poOpenInfo->fpL; poOpenInfo->fpL = nullptr; @@ -402,6 +399,13 @@ GDALDataset *COASPDataset::Open( GDALOpenInfo *poOpenInfo ) char *pszDir = VSIStrdup(CPLGetPath(poDS->pszFileName)); const char *pszExt = "rc"; int nNull = static_cast(strlen(pszBaseName)) - 1; + if( nNull <= 0 ) + { + VSIFree(pszDir); + VSIFree(pszBaseName); + delete poDS; + return nullptr; + } char *pszBase = (char *)CPLMalloc(nNull); strncpy(pszBase, pszBaseName, nNull); pszBase[nNull - 1] = '\0'; diff --git a/gdal/frmts/grib/degrib/README.TXT b/gdal/frmts/grib/degrib/README.TXT index 849febbb676d..f7da84ae1600 100644 --- a/gdal/frmts/grib/degrib/README.TXT +++ b/gdal/frmts/grib/degrib/README.TXT @@ -3,6 +3,9 @@ PROVENANCE This directory contains a *modified* version of degrib 2.14: http://www.mdl.nws.noaa.gov/~degrib/download/archive/degrib-20171016.tar.gz +With metaname.cpp update to degrib 2.24: + https://sats.nws.noaa.gov/~degrib/download/archive/degrib-20190620.tar.gz + and a *modified* version of g2clib 1.6.0: http://www.nco.ncep.noaa.gov/pmb/codes/GRIB2/g2clib-1.6.0.tar (Last updated: 02/18/2016) diff --git a/gdal/frmts/grib/degrib/degrib/inventory.cpp b/gdal/frmts/grib/degrib/degrib/inventory.cpp index 4a676092ccc6..707255c8dad1 100644 --- a/gdal/frmts/grib/degrib/degrib/inventory.cpp +++ b/gdal/frmts/grib/degrib/degrib/inventory.cpp @@ -524,9 +524,10 @@ enum { GS4_ANALYSIS, GS4_ENSEMBLE, GS4_DERIVED, GS4_PROBABIL_PNT = 5, && (templat != GS4_RADAR) && (templat != GS4_SATELLITE) && (templat != GS4_SATELLITE_SYNTHETIC) && (templat != GS4_DERIVED_INTERVAL) - && (templat != GS4_ANALYSIS_CHEMICAL) ) { + && (templat != GS4_ANALYSIS_CHEMICAL) + && (templat != GS4_OPTICAL_PROPERTIES_AEROSOL) ) { errSprintf ("This was only designed for templates 0, 1, 2, 5, 6, 7, 8, 9, " - "10, 11, 12, 15, 20, 30, 32, 40. Template found = %d\n", templat); + "10, 11, 12, 15, 20, 30, 32, 40, 48. Template found = %d\n", templat); inv->validTime = 0; inv->foreSec = 0; @@ -556,19 +557,22 @@ enum { GS4_ANALYSIS, GS4_ENSEMBLE, GS4_DERIVED, GS4_PROBABIL_PNT = 5, } return 1; } - if( secLen < 19 - 5 + 4 ) + + unsigned nOffset = 0; + if( templat == GS4_ANALYSIS_CHEMICAL ) { + nOffset = 16 - 14; + } + else if( templat == GS4_OPTICAL_PROPERTIES_AEROSOL ) + { + nOffset = 38 - 14; + } + + if( secLen < nOffset + 19 - 5 + 4 ) return -8; cat = (*buffer)[10 - 5]; subcat = (*buffer)[11 - 5]; - if( templat == GS4_ANALYSIS_CHEMICAL ) - { - if( secLen < 21 - 5 + 4 ) - return -8; - genProcess = (*buffer)[14 - 5]; - } - else - genProcess = (*buffer)[12 - 5]; + genProcess = (*buffer)[nOffset + 12 - 5]; genID = 0; probType = 0; lowerProb = 0; @@ -581,10 +585,6 @@ enum { GS4_ANALYSIS, GS4_ENSEMBLE, GS4_DERIVED, GS4_PROBABIL_PNT = 5, timeRangeUnit = 255; lenTime = 0; } else { - int nOffset = 0; - if( templat == GS4_ANALYSIS_CHEMICAL ) { - nOffset = 2; - } genID = (*buffer)[nOffset + 14 - 5]; /* Compute forecast time. */ foreTimeUnit = (*buffer)[nOffset + 18 - 5]; @@ -728,6 +728,22 @@ enum { GS4_ANALYSIS, GS4_ENSEMBLE, GS4_DERIVED, GS4_PROBABIL_PNT = 5, } } + uChar derivedFcst = (uChar)-1; // not determined + switch (templat) { + case GS4_DERIVED: + case GS4_DERIVED_CLUSTER_RECTANGULAR_AREA: + case GS4_DERIVED_CLUSTER_CIRCULAR_AREA: + case GS4_DERIVED_INTERVAL: + case GS4_DERIVED_INTERVAL_CLUSTER_RECTANGULAR_AREA: + case GS4_DERIVED_INTERVAL_CLUSTER_CIRCULAR_AREA: + if( secLen >= 35 ) { + derivedFcst = (uChar) (*buffer)[35 - 5]; + } + break; + default: + break; + } + if (timeRangeUnit == 255) { timeRangeUnit = 1; lenTime = DoubleToSInt4Clamp( @@ -820,11 +836,6 @@ enum { GS4_ANALYSIS, GS4_ENSEMBLE, GS4_DERIVED, GS4_PROBABIL_PNT = 5, sndSurfValue = 0; f_sndValue = 0; } else { - unsigned int nOffset = 0; - if( templat == GS4_ANALYSIS_CHEMICAL ) { - nOffset = 2; - } - if( secLen < nOffset + 31 - 5 + 4) return -8; fstSurfType = (*buffer)[nOffset + 23 - 5]; @@ -859,7 +870,9 @@ enum { GS4_ANALYSIS, GS4_ENSEMBLE, GS4_DERIVED, GS4_PROBABIL_PNT = 5, /* Find out what the name of this variable is. */ ParseElemName (mstrVersion, center, subcenter, prodType, templat, cat, subcat, lenTime, timeRangeUnit, statProcessID, timeIncrType, genID, probType, lowerProb, - upperProb, &(inv->element), &(inv->comment), + upperProb, + derivedFcst, + &(inv->element), &(inv->comment), &(inv->unitName), &convert, percentile, genProcess, f_fstValue, fstSurfValue, f_sndValue, sndSurfValue); diff --git a/gdal/frmts/grib/degrib/degrib/meta.h b/gdal/frmts/grib/degrib/degrib/meta.h index bc130028a6e7..282e3526acff 100644 --- a/gdal/frmts/grib/degrib/degrib/meta.h +++ b/gdal/frmts/grib/degrib/degrib/meta.h @@ -268,15 +268,23 @@ typedef struct { /* See Template 4.30. */ band. */ } sect4_BandType; -enum { GS4_ANALYSIS, GS4_ENSEMBLE, GS4_DERIVED, GS4_PROBABIL_PNT = 5, +enum { GS4_ANALYSIS = 0, + GS4_ENSEMBLE = 1, + GS4_DERIVED = 2, + GS4_DERIVED_CLUSTER_RECTANGULAR_AREA = 3, + GS4_DERIVED_CLUSTER_CIRCULAR_AREA = 4, + GS4_PROBABIL_PNT = 5, GS4_PERCENT_PNT = 6, GS4_ERROR = 7, GS4_STATISTIC = 8, GS4_PROBABIL_TIME = 9, GS4_PERCENT_TIME = 10, GS4_ENSEMBLE_STAT = 11, GS4_DERIVED_INTERVAL = 12, + GS4_DERIVED_INTERVAL_CLUSTER_RECTANGULAR_AREA = 13, + GS4_DERIVED_INTERVAL_CLUSTER_CIRCULAR_AREA = 14, GS4_STATISTIC_SPATIAL_AREA = 15, // TODO; partially supported. Should fetch specific fields in metaparse.cpp GS4_RADAR = 20, GS4_SATELLITE = 30, GS4_SATELLITE_SYNTHETIC = 32, - GS4_ANALYSIS_CHEMICAL = 40 + GS4_ANALYSIS_CHEMICAL = 40, + GS4_OPTICAL_PROPERTIES_AEROSOL = 48 }; typedef struct { diff --git a/gdal/frmts/grib/degrib/degrib/metaname.cpp b/gdal/frmts/grib/degrib/degrib/metaname.cpp index ce1d88d9ccb9..0176f4f40cd8 100644 --- a/gdal/frmts/grib/degrib/degrib/metaname.cpp +++ b/gdal/frmts/grib/degrib/degrib/metaname.cpp @@ -575,7 +575,7 @@ static const GRIB2ParmTable MeteoTemp[] = { /* 4 */ {"TMAX", "Maximum temperature", "K", UC_K2F}, /* Need NDFD override MaxT */ /* 5 */ {"TMIN", "Minimum temperature", "K", UC_K2F}, /* Need NDFD override MinT */ /* 6 */ {"DPT", "Dew point temperature", "K", UC_K2F}, /* Need NDFD override Td */ - /* 7 */ {"DEPR", "Dew point depression", "K", UC_K2F}, + /* 7 */ {"DEPR", "Dew point depression", "K", UC_NONE}, // Changed by GDAL to UC_NONE /* 8 */ {"LAPR", "Lapse rate", "K/m", UC_NONE}, /* 9 */ {"TMPA", "Temperature anomaly", "K", UC_K2F}, /* 10 */ {"LHTFL", "Latent heat net flux", "W/(m^2)", UC_NONE}, @@ -588,6 +588,18 @@ static const GRIB2ParmTable MeteoTemp[] = { /* 15 */ {"VPTMP", "Virtual potential temperature", "K", UC_K2F}, /* 16 */ {"SNOHF", "Snow phase change heat flux", "W/m^2", UC_NONE}, /* 17 */ {"SKINT", "Skin temperature", "K", UC_K2F}, + /* 18 */ {"SNOT", "Snow Temperature (top of snow)", "K", UC_K2F}, + /* 19 */ {"TTCHT", "Turbulent Transfer Coefficient for Heat", "Numeric", UC_NONE}, + /* 20 */ {"TDCHT", "Turbulent Diffusion Coefficient for Heat", "m^2/s", UC_NONE}, + /* 21 */ {"APTMP", "Apparent Temperature", "K", UC_K2F}, + /* 22 */ {"TTSWR", "Temperature Tendency due to Short-Wave Radiation", "K/s", UC_NONE}, + /* 23 */ {"TTLWR", "Temperature Tendency due to Long-Wave Radiation", "K/s", UC_NONE}, + /* 24 */ {"TTSWRCS", "Temperature Tendency due to Short-Wave Radiation, Clear Sky", "K/s", UC_NONE}, + /* 25 */ {"TTLWRCS", "Temperature Tendency due to Long-Wave Radiation, Clear Sky", "K/s", UC_NONE}, + /* 26 */ {"TTPARM", "Temperature Tendency due to parameterizations", "K/s", UC_NONE}, + /* 27 */ {"WETBT", "Wet Bulb Temperature", "K", UC_K2F}, + /* 28 */ {"UCTMP", "Unbalanced Component of Temperature", "K", UC_K2F}, + /* 29 */ {"TMPADV", "Temperature Advection", "K/s", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.1 */ @@ -666,6 +678,69 @@ static const GRIB2ParmTable MeteoMoist[] = { /* 66 */ {"SPRATE", "Snow precipitation rate", "kg/(m^2*s)", UC_NONE}, /* 67 */ {"FPRATE", "Freezing rain precipitation rate", "kg/(m^2*s)", UC_NONE}, /* 68 */ {"IPRATE", "Ice pellets precipitation rate", "kg/(m^2*s)", UC_NONE}, +/* 69 */ {"TCOLW", "Total Column Integrate Cloud Water", "kg/m^2", UC_NONE}, +/* 70 */ {"TCOLI", "Total Column Integrate Cloud Ice", "kg/m^2", UC_NONE}, +/* 71 */ {"HAILMXR", "Hail Mixing Ratio", "kg/kg", UC_NONE}, +/* 72 */ {"TCOLH", "Total Column Integrate Hail", "kg/m^2", UC_NONE}, +/* 73 */ {"HAILPR", "Hail Prepitation Rate", "kg/(m^2*s)", UC_NONE}, +/* 74 */ {"TCOLG", "Total Column Integrate Graupel", "kg/m^2", UC_NONE}, +/* 75 */ {"GPRATE", "Graupel (Snow Pellets) Prepitation Rate", "kg/(m^2*s)", UC_NONE}, +/* 76 */ {"CRRATE", "Convective Rain Rate", "kg/(m^2*s)", UC_NONE}, +/* 77 */ {"LSRRATE", "Large Scale Rain Rate", "kg/(m^2*s)", UC_NONE}, +/* 78 */ {"TCOLWA", "Total Column Integrate Water (All components including precipitation)", "kg/m^2", UC_NONE}, +/* 79 */ {"EVARATE", "Evaporation Rate", "kg/(m^2*s)", UC_NONE}, +/* 80 */ {"TOTCON", "Total Condensate", "kg/kg", UC_NONE}, +/* 81 */ {"TCICON", "Total Column-Integrate Condensate", "kg/m^2", UC_NONE}, +/* 82 */ {"CIMIXR", "Cloud Ice Mixing Ratio", "kg/kg", UC_NONE}, +/* 83 */ {"SCLLWC", "Specific Cloud Liquid Water Content", "kg/kg", UC_NONE}, +/* 84 */ {"SCLIWC", "Specific Cloud Ice Water Content", "kg/kg", UC_NONE}, +/* 85 */ {"SRAINW", "Specific Rain Water Content", "kg/kg", UC_NONE}, +/* 86 */ {"SSNOWW", "Specific Snow Water Content", "kg/kg", UC_NONE}, +/* 87 */ {"SPRATE", "Stratiform Precipitation Rate", "kg/(m^2*s)", UC_NONE}, +/* 88 */ {"CATCP", "Categorical Convective Precipitation", "0=No; 1=Yes; " + "2-191=Reserved; 192-254=Reserved; 255=missing", UC_NONE}, +/* 89 */ {"", "Reserved", "-", UC_NONE}, +/* 90 */ {"TKMFLX", "Total Kinematic Moisture Flux", "kg/kg(m/s)", UC_NONE}, +/* 91 */ {"UKMFLX", "U-component (zonal) Kinematic Moisture Flux", "kg/kg(m/s)", UC_NONE}, +/* 92 */ {"VKMFLX", "V-component (meridional) Kinematic Moisture Flux", "kg/kg(m/s)", UC_NONE}, +/* 93 */ {"RHWATER", "Relative Humidity With Respect to Water", "%", UC_NONE}, +/* 94 */ {"RHICE", "Relative Humidity With Respect to Ice", "%", UC_NONE}, +/* 95 */ {"FZPRATE", "Freezing or Frozen Precipitation Rate", "kg/(m^2*s)", UC_NONE}, +/* 96 */ {"MASSDR", "Mass Density of Rain", "kg/m^3", UC_NONE}, +/* 97 */ {"MASSDS", "Mass Density of Snow", "kg/m^3", UC_NONE}, +/* 98 */ {"MASSDG", "Mass Density of Graupel", "kg/m^3", UC_NONE}, +/* 99 */ {"MASSDH", "Mass Density of Hail", "kg/m^3", UC_NONE}, +/* 100 */ {"SPNCR", "Specific Number Concentration of Rain", "kg^-1", UC_NONE}, +/* 101 */ {"SPNCS", "Specific Number Concentration of Snow", "kg^-1", UC_NONE}, +/* 102 */ {"SPNCG", "Specific Number Concentration of Graupel", "kg^-1", UC_NONE}, +/* 103 */ {"SPNCH", "Specific Number Concentration of Hail", "kg^-1", UC_NONE}, +/* 104 */ {"NUMDR", "Number Density of Rain", "m^-3", UC_NONE}, +/* 105 */ {"NUMDS", "Number Density of Snow", "m^-3", UC_NONE}, +/* 106 */ {"NUMDG", "Number Density of Graupel", "m^-3", UC_NONE}, +/* 107 */ {"NUMDH", "Number Density of Hail", "m^-3", UC_NONE}, +/* 108 */ {"SHTPRM", "Specific Humidity Tendency due to Parameterizations", "kg/kg(s)", UC_NONE}, +/* 109 */ {"MDLWHVA", "Mass Density of Liquid Water Coating on Hail Expressed as " + "Mass of Liquid Water per Unit Volume of Air", "kg/m^3", UC_NONE}, +/* 110 */ {"SMLWHMA", "Specific Mass of Liquid Water Coating on Hail Expressed as " + "Mass of Liquid Water per Unit Mass of Moist Air", "kg/kg", UC_NONE}, +/* 111 */ {"MMLWHDA", "Mass Mixing Ratio of Liquid Water Coating on Hail Expressed as " + "Mass of Liquid Water per Unit Mass of Dry Air", "kg/kg", UC_NONE}, +/* 112 */ {"MDLWGVA", "Mass Density of Liquid Water Coating on Graupel Expressed as " + "Mass of Liquid Water per Unit Volume of Air", "kg/m^3", UC_NONE}, +/* 113 */ {"SMLWGMA", "Specific Mass of Liquid Water Coating on Graupel Expressed as " + "Mass of Liquid Water per Unit Mass of Moist Air", "kg/kg", UC_NONE}, +/* 114 */ {"MMLWGDA", "Mass Mixing Ratio of Liquid Water Coating on Graupel Expressed as " + "Mass of Liquid Water per Unit Mass of Dry Air", "kg/kg", UC_NONE}, +/* 115 */ {"MDLWSVA", "Mass Density of Liquid Water Coating on Snow Expressed as " + "Mass of Liquid Water per Unit Volume of Air", "kg/m^3", UC_NONE}, +/* 116 */ {"SMLWSMA", "Specific Mass of Liquid Water Coating on Snow Expressed as " + "Mass of Liquid Water per Unit Mass of Moist Air", "kg/kg", UC_NONE}, +/* 117 */ {"MMLWSDA", "Mass Mixing Ratio of Liquid Water Coating on Snow Expressed as " + "Mass of Liquid Water per Unit Mass of Dry Air", "kg/kg", UC_NONE}, +/* 118 */ {"UNCSH", "Unbalanced Component of Specific Humidity", "kg/kg", UC_NONE}, +/* 119 */ {"UCSCLW", "Unbalanced Component of Specific Cloud Liquid Water content", "kg/kg", UC_NONE}, +/* 120 */ {"UCSCIW", "Unbalanced Component of Specific Cloud Ice Water content", "kg/kg", UC_NONE}, +/* 121 */ {"FSNOWC", "Fraction of Snow Cover", "Proportion", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.2 */ @@ -702,6 +777,22 @@ static const GRIB2ParmTable MeteoMoment[] = { /* 28 */ {"VSTM", "V-component storm motion", "m/s", UC_NONE}, /* 29 */ {"CD", "Drag coefficient", "-", UC_NONE}, /* 30 */ {"FRICV", "Frictional velocity", "m/s", UC_NONE}, +/* 31 */ {"TDCMOM", "Turbulent Diffusion Coefficient for Momentum", "(m^2)/s", UC_NONE}, +/* 32 */ {"ETACVV", "Eta Coordinate Vertical Velocity", "1/s", UC_NONE}, +/* 33 */ {"WINDF", "Wind Fetch", "m", UC_NONE}, +/* 34 */ {"NWIND", "Normal Wind Component", "m/s", UC_NONE}, +/* 35 */ {"TWIND", "Tangential Wind Component", "m/s", UC_NONE}, +/* 36 */ {"AFRWE", "Amplitude Function for Rossby Wave Envelope for Meridional Wind", "m/s", UC_NONE}, +/* 37 */ {"NTSS", "Northward Turbulent Surface Stress", "1/(m^2)", UC_NONE}, +/* 38 */ {"ETSS", "Eastward Turbulent Surface Stress", "1/(m^2)", UC_NONE}, +/* 39 */ {"EWTPARM", "Eastward Wind Tendency Due to Parameterizations", "m/(s^2)", UC_NONE}, +/* 40 */ {"NWTPARM", "Northward Wind Tendency Due to Parameterizations", "m/(s^2)", UC_NONE}, +/* 41 */ {"UGWIND", "U-Component of Geostrophic Wind", "m/s", UC_NONE}, +/* 42 */ {"VGWIND", "V-Component of Geostrophic Wind", "m/s", UC_NONE}, +/* 43 */ {"GEOWD", "Geostrophic Wind Direction", "deg true", UC_NONE}, +/* 44 */ {"GEOWS", "Geostrophic Wind Speed", "m/s", UC_NONE}, +/* 45 */ {"UNDIV", "Unbalanced Component of Divergence", "1/s", UC_NONE}, +/* 46 */ {"VORTADV", "Vorticity Advection", "1/(s^2)", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.3 */ @@ -731,6 +822,13 @@ static const GRIB2ParmTable MeteoMass[] = { /* 22 */ {"SSGSO", "Slope of sub-gridscale orography", "Numeric", UC_NONE}, /* 23 */ {"GSGSO", "Gravity wave dissipation", "W/m^2", UC_NONE}, /* 24 */ {"ASGSO", "Anisotrophy of sub-gridscale orography", "Numeric", UC_NONE}, +/* 25 */ {"NLPRES", "Natural Logarithm of Pressure in Pa", "Numeric", UC_NONE}, +/* 26 */ {"EXPRES", "Exner Pressure", "Numeric", UC_NONE}, +/* 27 */ {"UMFLX", "Updraught Mass Flux", "kg/(m^2*s)", UC_NONE}, +/* 28 */ {"DMFLX", "Downdraught Mass Flux", "kg/(m^2*s)", UC_NONE}, +/* 29 */ {"UDRATE", "Updraught Detrainment Rate", "kg/(m^3*s)", UC_NONE}, +/* 30 */ {"DDRATE", "Downdraught Detrainment Rate", "kg/(m^3*s)", UC_NONE}, +/* 31 */ {"UCLSPRS", "Unbalanced Component of Logarithm of Surface Pressure", "", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.4 */ @@ -749,8 +847,8 @@ static const GRIB2ParmTable MeteoShortRadiate[] = { /* 10 */ {"PHOTAR", "Photosynthetically active radiation", "W/(m^2)", UC_NONE}, /* 11 */ {"NSWRFCS", "Net short-wave radiation flux; clear sky", "W/(m^2)", UC_NONE}, /* 12 */ {"DWUVR", "Downward UV radiation", "W/(m^2)", UC_NONE}, -/* 13 */ {"", "Reserved", "-", UC_NONE}, -/* 14 */ {"", "Reserved", "-", UC_NONE}, +/* 13 */ {"DSWRFLX", "Direct Short Wave Radiation Flux", "W/(m^2)", UC_NONE}, +/* 14 */ {"DIFSWRF", "Diffuse Short Wave Radiation Flux", "W/(m^2)", UC_NONE}, /* 15 */ {"", "Reserved", "-", UC_NONE}, /* 16 */ {"", "Reserved", "-", UC_NONE}, /* 17 */ {"", "Reserved", "-", UC_NONE}, @@ -788,6 +886,8 @@ static const GRIB2ParmTable MeteoShortRadiate[] = { /* 49 */ {"", "Reserved", "-", UC_NONE}, /* 50 */ {"UVIUCS", "UV index (under clear sky)", "Numeric", UC_NONE}, /* 51 */ {"UVI", "UV index", "W/(m^2)", UC_UVIndex}, +/* 52 */ {"DSWRFCS", "Downward Short-Wave Radiation Flux, Clear Sky", "W/(m^2)", UC_NONE}, +/* 53 */ {"USWRFCS", "Upward Short-Wave Radiation Flux, Clear Sky", "W/(m^2)", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.5 */ @@ -800,7 +900,9 @@ static const GRIB2ParmTable MeteoLongRadiate[] = { /* 4 */ {"ULWRF", "Upward long-wave radiation flux", "W/(m^2)", UC_NONE}, /* 5 */ {"NLWRF", "Net long wave radiation flux", "W/(m^2)", UC_NONE}, /* 6 */ {"NLWRCS", "Net long-wave radiation flux; clear sky", "W/(m^2)", UC_NONE}, -/* 7 */ {"BRTEMP", "Brightness Temperature", "K", UC_NONE}, +/* 7 */ {"BRTEMP", "Brightness Temperature", "K", UC_K2F}, +/* 8 */ {"DLWRFCS", "Downward Long-Wave Radiation Flux, Clear Sky", "W/(m^2)", UC_NONE}, + }; /* GRIB2 Code table 4.2 : 0.6 */ @@ -840,15 +942,30 @@ static const GRIB2ParmTable MeteoCloud[] = { /* 23 */ {"CDCIMR", "Cloud ice mixing ratio", "kg/kg", UC_NONE}, /* 24 */ {"SUNS", "Sunshine", "Numeric", UC_NONE}, /* 25 */ {"CBHE", "Horizontal extent of cumulonimbus (CB)", "%", UC_NONE}, -/* 26 */ {"", "Reserved", "-", UC_NONE}, -/* 27 */ {"", "Reserved", "-", UC_NONE}, -/* 28 */ {"", "Reserved", "-", UC_NONE}, -/* 29 */ {"", "Reserved", "-", UC_NONE}, -/* 30 */ {"", "Reserved", "-", UC_NONE}, -/* 31 */ {"", "Reserved", "-", UC_NONE}, -/* 32 */ {"", "Reserved", "-", UC_NONE}, -/* 33 */ {"SUNSD", "SunShine Duration", "s", UC_NONE}, - +/* 26 */ {"HCONCB", "Height of Convective Cloud Base", "m", UC_NONE}, +/* 27 */ {"HCONCT", "Height of Convective Cloud Top", "m", UC_NONE}, +/* 28 */ {"NCONCD", "Number Concentration of Cloud Droplets", "1/kg", UC_NONE}, +/* 29 */ {"NCCICE", "Number Concentration of Cloud Ice", "1/kg", UC_NONE}, +/* 30 */ {"NDENCD", "Number Density of Cloud Droplets", "1/(m^3)", UC_NONE}, +/* 31 */ {"NDCICE", "Number Density of Cloud Ice", "1/(m^3)", UC_NONE}, +/* 32 */ {"FRACCC", "Fraction of Cloud Cover", "Numeric", UC_NONE}, +/* 33 */ {"SUNSD", "SunShine Duration", "s", UC_NONE}, +/* 34 */ {"SLWTC", "Surface Long Wave Effective Total Cloudiness", "Numeric", UC_NONE}, +/* 35 */ {"SSWTC", "Surface Short Wave Effective Total Cloudiness", "Numeric", UC_NONE}, +/* 36 */ {"FSTRPC", "Fraction of Stratiform Precipitation Cover", "Proportion", UC_NONE}, +/* 37 */ {"FCONPC", "Fraction of Convective Precipitation Cover", "Proportion", UC_NONE}, +/* 38 */ {"MASSDCD", "Mass Density of Cloud Droplets", "kg/(m^3)", UC_NONE}, +/* 39 */ {"MASSDCI", "Mass Density of Cloud Ice", "kg/(m^3)", UC_NONE}, +/* 40 */ {"MDCCWD", "Mass Density of Convective Cloud Water Droplets", "kg/(m^3)", UC_NONE}, +/* 41 */ {"", "Reserved", "-", UC_NONE}, +/* 42 */ {"", "Reserved", "-", UC_NONE}, +/* 43 */ {"", "Reserved", "-", UC_NONE}, +/* 44 */ {"", "Reserved", "-", UC_NONE}, +/* 45 */ {"", "Reserved", "-", UC_NONE}, +/* 46 */ {"", "Reserved", "-", UC_NONE}, +/* 47 */ {"VFRCWD", "Volume Fraction of Cloud Water Droplets", "Numeric", UC_NONE}, +/* 48 */ {"VFRCICE", "Volume Fraction of Cloud Ice Particles", "Numeric", UC_NONE}, +/* 49 */ {"VFRCIW", "Volume Fraction of Cloud (Ice and/or Water)", "Numeric", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.7 */ @@ -867,11 +984,11 @@ static const GRIB2ParmTable MeteoStability[] = { /* 11 */ {"4LFTX", "Best (4-layer) lifted index", "K", UC_NONE}, /* 12 */ {"RI", "Richardson number", "-", UC_NONE}, /* 13 */ {"SHWINX", "Showalter Index", "K", UC_NONE}, -/* 14 */ {"-", "Reserved", "-", UC_NONE}, +/* 14 */ {"", "Reserved", "-", UC_NONE}, /* 15 */ {"UPHL", "Updraft Helicity", "m^2/s^2", UC_NONE}, -/* 16 */ {"BLKRN", "Bulk Richardson Number", "Numeric", UC_NONE}, -/* 17 */ {"GRDRN", "Gradient Richardson Number", "Numeric", UC_NONE}, -/* 18 */ {"FLXRN", "Flux Richardson Number", "Numeric", UC_NONE}, +/* 16 */ {"BLKRN", "Bulk Richardson Number", "-", UC_NONE}, +/* 17 */ {"GRDRN", "Gradient Richardson Number", "-", UC_NONE}, +/* 18 */ {"FLXRN", "Flux Richardson Number", "-", UC_NONE}, /* 19 */ {"CONAPES", "Convective Available Potential Energy Shear", "m^2/s^2", UC_NONE}, /* 20 */ {"-", "Reserved", "-", UC_NONE}, /* 21 */ {"-", "Reserved", "-", UC_NONE}, @@ -1080,6 +1197,14 @@ static const GRIB2ParmTable MeteoRadar[] = { /* 6 */ {"RDSP1", "Radar spectra (1)", "-", UC_NONE}, /* 7 */ {"RDSP2", "Radar spectra (2)", "-", UC_NONE}, /* 8 */ {"RDSP3", "Radar spectra (3)", "-", UC_NONE}, + /* 9 */ {"RFCD", "Reflectivity of Cloud Droplets", "dB", UC_NONE}, + /* 10 */ {"RFCI", "Reflectivity of Cloud Ice", "dB", UC_NONE}, + /* 11 */ {"RFSNOW", "Reflectivity of Snow", "dB", UC_NONE}, + /* 12 */ {"RFRAIN", "Reflectivity of Rain", "dB", UC_NONE}, + /* 13 */ {"RFGRPL", "Reflectivity of Graupel", "dB", UC_NONE}, + /* 14 */ {"RFHAIL", "Reflectivity of Hail", "dB", UC_NONE}, + /* 15 */ {"HSR", "Hybrid Scan Reflectivity", "dB", UC_NONE}, + /* 16 */ {"HSRHT", "Hybrid Scan Reflectivity Height", "m", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.16 */ @@ -1092,6 +1217,12 @@ static const GRIB2ParmTable MeteoRadarImagery[] = { /* 5 */ {"REFC", "Composity reflectivity", "dB", UC_NONE}, }; +/* GRIB2 Code table 4.2 : 0.17 */ +static const GRIB2ParmTable MeteoElectro[] = { +/* 0 */ {"LTNGSD", "Lightning Strike Density", "m^2/s", UC_NONE}, +/* 1 */ {"LTPINX", "Lightning Potential Index (LPI) (see Note)", "J/kg", UC_NONE}, +}; + /* GRIB2 Code table 4.2 : 0.18 */ static const GRIB2ParmTable MeteoNuclear[] = { /* 0 */ {"ACCES", "Air concentration of Caesium 137", "Bq/(m^3)", UC_NONE}, @@ -1106,6 +1237,16 @@ static const GRIB2ParmTable MeteoNuclear[] = { "(Bq s)/(m^3)", UC_NONE}, /* 8 */ {"TIACRP", "Time-integrated air concentration of radioactive pollutant", "(Bq s)/(m^3)", UC_NONE}, + /* 9 */ {"", "Reserved", "-", UC_NONE}, + /* 10 */ {"AIRCON", "Air Concentration", "Bq/(m^3)", UC_NONE}, + /* 11 */ {"WETDEP", "Wet Deposition", "Bq/(m^2)", UC_NONE}, + /* 12 */ {"DRYDEP", "Dry Deposition", "Bq/(m^2)", UC_NONE}, + /* 13 */ {"TOTLWD", "Total Deposition (Wet + Dry)", "Bq/(m^2)", UC_NONE}, + /* 14 */ {"SACON", "Specific Activity Concentration", "Bq/kg", UC_NONE}, + /* 15 */ {"MAXACON", "Maximum of Air Concentration in Layer", "Bq/(m^3)", UC_NONE}, + /* 16 */ {"HMXACON", "Height of Maximum of Air Concentration", "m", UC_NONE}, + /* 17 */ {"CIAIRC", "Column-Integrated Air Concentration", "Bq/(m^2)", UC_NONE}, + /* 18 */ {"CAACL", "Column-Averaged Air Concentration in Layer", "Bq/(m^3)", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.19 */ @@ -1150,6 +1291,16 @@ static const GRIB2ParmTable MeteoAtmos[] = { "9-10=Reserved; 11=Dry Thunderstorm (Dry Lightning) Risk Area; " "12-13=Reserved; 14=Critical Risk Area; 15-17=Reserved" "18=Extremely Critical Risk Area; 255=missing", UC_NONE}, +/* 27 */ {"ICESC", "Icing Scenario", "0=None; 1=General, 2=Convective " + "3=Stratiform; 4=Freezing; 5-191=Reserved; 255=missing", UC_NONE}, +/* 28 */ {"MWTURB", "Mountain Wave Turbulence (Eddy Dissipation Rate)", "m^(2/3)/s" , UC_NONE}, +/* 29 */ {"CATEDR", "Clear Air Turbulence (CAT) (Eddy Dissipation Rate)", "m^(2/3)/s", UC_NONE}, +/* 30 */ {"EDPARM", "Eddy Dissipation Parameter", "m^(2/3)/s", UC_NONE}, +/* 31 */ {"MXEDPRM", "Maximum of Eddy Dissipation Parameter in Layer", "m^(2/3)/s", UC_NONE}, +/* 32 */ {"HIFREL", "Highest Freezing Level", "m", UC_NONE}, +/* 33 */ {"VISLFOG", "Visibility Through Liquid Fog", "m", UC_NONE}, +/* 34 */ {"VISIFOG", "Visibility Through Ice Fog", "m", UC_NONE}, +/* 35 */ {"VISBSN", "Visibility Through Blowing Snow", "m", UC_NONE}, }; /* GRIB2 Code table 4.2 : 0.20 */ @@ -1163,15 +1314,15 @@ static const GRIB2ParmTable MeteoAtmoChem[] = { /* 6 */ {"SDDMFLX", "Surface Dry Deposition Mass Flux", "kg/(m^2*s)", UC_NONE}, /* 7 */ {"SWDMFLX", "Surface Wet Deposition Mass Flux", "kg/(m^2*s)", UC_NONE}, /* 8 */ {"AREMFLX", "Atmosphere Re-Emission Mass Flux", "kg/(m^2*s)", UC_NONE}, - /* 9 */ {"", "Reserved", "-", UC_NONE}, - /* 10 */ {"", "Reserved", "-", UC_NONE}, - /* 11 */ {"", "Reserved", "-", UC_NONE}, - /* 12 */ {"", "Reserved", "-", UC_NONE}, - /* 13 */ {"", "Reserved", "-", UC_NONE}, - /* 14 */ {"", "Reserved", "-", UC_NONE}, - /* 15 */ {"", "Reserved", "-", UC_NONE}, - /* 16 */ {"", "Reserved", "-", UC_NONE}, - /* 17 */ {"", "Reserved", "-", UC_NONE}, + /* 9 */ {"WLSMFLX", "Wet Deposition by Large-Scale Precipitation Mass Flux", "kg/(m^2*s)", UC_NONE}, + /* 10 */ {"WDCPMFLX", "Wet Deposition by Convective Precipitation Mass Flux", "kg/(m^2*s)", UC_NONE}, + /* 11 */ {"SEDMFLX", "Sedimentation Mass Flux", "kg/(m^2*s)", UC_NONE}, + /* 12 */ {"DDMFLX", "Dry Deposition Mass Flux", "kg/(m^2*s)", UC_NONE}, + /* 13 */ {"TRANHH", "Transfer From Hydrophobic to Hydrophilic", "kg(kg*s)", UC_NONE}, + /* 14 */ {"TRSDS", "Transfer From SO2 (Sulphur Dioxide) to SO4 (Sulphate)", "kg(kg*s)", UC_NONE}, + /* 15 */ {"DDVEL", "Dry deposition velocity", "m/s", UC_NONE}, + /* 16 */ {"MSSRDRYA", "Mass mixing ratio with respect to dry air", "kg/kg", UC_NONE}, + /* 17 */ {"MSSRWETA", "Mass mixing ratio with respect to wet air", "kg/kg", UC_NONE}, /* 18 */ {"", "Reserved", "-", UC_NONE}, /* 19 */ {"", "Reserved", "-", UC_NONE}, /* 20 */ {"", "Reserved", "-", UC_NONE}, @@ -1213,23 +1364,23 @@ static const GRIB2ParmTable MeteoAtmoChem[] = { /* 56 */ {"COAIA", "Changes of Amount in Atmosphere", "mol/s", UC_NONE}, /* 57 */ {"TYABA", "Total Yearly Average Burden of the Atmosphere", "mol", UC_NONE}, /* 58 */ {"TYAAL", "Total Yearly Average Atmospheric Loss", "mol/s", UC_NONE}, - /* 59 */ {"", "Reserved", "-", UC_NONE}, - /* 60 */ {"", "Reserved", "-", UC_NONE}, - /* 61 */ {"", "Reserved", "-", UC_NONE}, - /* 62 */ {"", "Reserved", "-", UC_NONE}, - /* 63 */ {"", "Reserved", "-", UC_NONE}, - /* 64 */ {"", "Reserved", "-", UC_NONE}, - /* 65 */ {"", "Reserved", "-", UC_NONE}, - /* 66 */ {"", "Reserved", "-", UC_NONE}, - /* 67 */ {"", "Reserved", "-", UC_NONE}, - /* 68 */ {"", "Reserved", "-", UC_NONE}, - /* 69 */ {"", "Reserved", "-", UC_NONE}, - /* 70 */ {"", "Reserved", "-", UC_NONE}, - /* 71 */ {"", "Reserved", "-", UC_NONE}, - /* 72 */ {"", "Reserved", "-", UC_NONE}, - /* 73 */ {"", "Reserved", "-", UC_NONE}, - /* 74 */ {"", "Reserved", "-", UC_NONE}, - /* 75 */ {"", "Reserved", "-", UC_NONE}, + /* 59 */ {"ANCON", "Aerosol Number Concentration", "1/(m^3)", UC_NONE}, + /* 60 */ {"ASNCON", "Aerosol Specific Number Concentration", "1/kg", UC_NONE}, + /* 61 */ {"MXMASSD", "Maximum of Mass Density", "kg(/m^3)", UC_NONE}, + /* 62 */ {"HGTMD", "Height of Mass Density", "m", UC_NONE}, + /* 63 */ {"CAVEMDL", "Column-Averaged Mass Density in Layer", "kg/(m^3)", UC_NONE}, + /* 64 */ {"MOLRDRYA", "Mole fraction with respect to dry air", "mol/mol", UC_NONE}, + /* 65 */ {"MOLRWETA", "Mole fraction with respect to dry air", "mol/mol", UC_NONE}, + /* 66 */ {"CINCLDSP", "Column-integrated in-cloud scavenging rate by precipitation", "kg/(m^2 s)", UC_NONE}, + /* 67 */ {"CBLCLDSP", "Column-integrated below-cloud scavenging rate by precipitation", "kg/(m^2 s)", UC_NONE}, + /* 68 */ {"CIRELREP", "Column-integrated release rate from evaporating precipitation", "kg/(m^2 s)", UC_NONE}, + /* 69 */ {"CINCSLSP", "Column-integrated in-cloud scavenging rate by large-scale precipitation", "kg/(m^2 s)", UC_NONE}, + /* 70 */ {"CBECSLSP", "Column-integrated below-cloud scavenging rate by large-scale precipitation", "kg/(m^2 s)", UC_NONE}, + /* 71 */ {"CRERELSP", "Column-integrated release rate from evaporating large-scale precipitation", "kg/(m^2 s)-", UC_NONE}, + /* 72 */ {"CINCSRCP", "Column-integrated in-cloud scavenging rate by convective precipitation", "kg/(m^2 s)", UC_NONE}, + /* 73 */ {"CBLCSRCP", "Column-integrated below-cloud scavenging rate by convective precipitation", "kg/(m^2 s)", UC_NONE}, + /* 74 */ {"CIRERECP", "Column-integrated release rate from evaporating convective precipitation", "kg/(m^2 s)", UC_NONE}, + /* 75 */ {"WFIREFLX", "Wildfire flux", "kg/(m^2 s)", UC_NONE}, /* 76 */ {"", "Reserved", "-", UC_NONE}, /* 77 */ {"", "Reserved", "-", UC_NONE}, /* 78 */ {"", "Reserved", "-", UC_NONE}, @@ -1255,18 +1406,18 @@ static const GRIB2ParmTable MeteoAtmoChem[] = { /* 98 */ {"", "Reserved", "-", UC_NONE}, /* 99 */ {"", "Reserved", "-", UC_NONE}, /* 100 */ {"SADEN", "Surface Area Density (Aerosol)", "1/m", UC_NONE}, - /* 101 */ {"AOTK", "Atmosphere Optical Thickness", "m", UC_NONE}, - /* 102 */ {"", "Reserved", "-", UC_NONE}, - /* 103 */ {"", "Reserved", "-", UC_NONE}, - /* 104 */ {"", "Reserved", "-", UC_NONE}, - /* 105 */ {"", "Reserved", "-", UC_NONE}, - /* 106 */ {"", "Reserved", "-", UC_NONE}, - /* 107 */ {"", "Reserved", "-", UC_NONE}, - /* 108 */ {"", "Reserved", "-", UC_NONE}, - /* 109 */ {"", "Reserved", "-", UC_NONE}, - /* 110 */ {"", "Reserved", "-", UC_NONE}, - /* 111 */ {"", "Reserved", "-", UC_NONE}, - /* 112 */ {"", "Reserved", "-", UC_NONE}, + /* 101 */ {"ATMTK", "Vertical Visual Range", "m", UC_NONE}, + /* 102 */ {"AOTK", "Atmosphere Optical Thickness", "Numeric", UC_NONE}, + /* 103 */ {"SSALBK", "Single Scattering Albedo", "Numeric", UC_NONE}, + /* 104 */ {"ASYSFK", "Asymmetry Factor", "Numeric", UC_NONE}, + /* 105 */ {"AECOEF", "Aerosol Extinction Coefficient", "1/m", UC_NONE}, + /* 106 */ {"AACOEF", "Aerosol Absorption Coefficient", "1/m", UC_NONE}, + /* 107 */ {"ALBSAT", "Aerosol Lidar Backscatter from Satellite", "1/(m*sr)", UC_NONE}, + /* 108 */ {"ALBGRD", "Aerosol Lidar Backscatter from the Ground", "1/(m*sr)", UC_NONE}, + /* 109 */ {"ALESAT", "Aerosol Lidar Extinction from Satellite", "1/m", UC_NONE}, + /* 110 */ {"ALEGRD", "Aerosol Lidar Extinction from the Ground", "1/m", UC_NONE}, + /* 111 */ {"ANGSTEXP", "Angstrom Exponent", "Numeric", UC_NONE}, + /* 112 */ {"SCTAOTK", "Scattering Aerosol Optical Thickness", "Numeric", UC_NONE}, /* 113 */ {"", "Reserved", "-", UC_NONE}, /* 114 */ {"", "Reserved", "-", UC_NONE}, /* 115 */ {"", "Reserved", "-", UC_NONE}, @@ -1285,10 +1436,11 @@ static const GRIB2ParmTable MeteoAtmoChem[] = { /* 128 */ {"", "Reserved", "-", UC_NONE}, /* 129 */ {"", "Reserved", "-", UC_NONE}, /* 130 */ {"", "Reserved", "-", UC_NONE}, - /* 131 */ {"NO2TROP", "Nitrogen Dioxide (NO2) Tropospheric Column", "mol/(cm^2)", UC_NONE}, - /* 132 */ {"NO2VCD", "Nitrogen Dioxide (NO2) Vertical Column Density", "mol/(cm^2)", UC_NONE}, - /* 133 */ {"BROVCD", "Bromine Monoxide (BrO) Vertical Column Density", "mol/(cm^2)", UC_NONE}, - /* 134 */ {"HCHOVCD", "Formaldehyde (HCHO) Vertical Column Density", "mol/(cm^2)", UC_NONE}, +/* Not in Table as of 4/2018 */ + /* 131 */ /* {"NO2TROP", "Nitrogen Dioxide (NO2) Tropospheric Column", "mol/(cm^2)", UC_NONE}, */ + /* 132 */ /* {"NO2VCD", "Nitrogen Dioxide (NO2) Vertical Column Density", "mol/(cm^2)", UC_NONE}, */ + /* 133 */ /* {"BROVCD", "Bromine Monoxide (BrO) Vertical Column Density", "mol/(cm^2)", UC_NONE}, */ + /* 134 */ /* {"HCHOVCD", "Formaldehyde (HCHO) Vertical Column Density", "mol/(cm^2)", UC_NONE}, */ }; /* GRIB2 Code table 4.2 : 0.190 */ @@ -1300,6 +1452,9 @@ static const GRIB2ParmTable MeteoText[] = { static const GRIB2ParmTable MeteoMisc[] = { /* 0 */ {"TSEC", "Seconds prior to initial reference time (defined in Section" " 1)", "s", UC_NONE}, + /* */ {"GEOLAT", "Geographical Latitude", "deg N", UC_NONE}, + /* */ {"GEOLON", "Geographical Longitude", "deg E", UC_NONE}, + /* */ {"DSLOBS", "Days Since Last Observation", "d", UC_NONE}, }; /* GRIB2 Code table 4.2 : 1.0 */ @@ -1357,6 +1512,37 @@ static const GRIB2ParmTable LandVeg[] = { /* 25 */ {"VSOILM", "Volumetric soil moisture", "m^3/m^3", UC_NONE}, /* 26 */ {"WILT", "Wilting point", "kg/m^3", UC_NONE}, /* 27 */ {"VWILTM", "Volumetric wilting moisture", "m^3/m^3", UC_NONE}, +/* 28 */ {"LEAINX", "Leaf Area Index", "Numeric", UC_NONE}, +/* 29 */ {"EVGFC", "Evergreen Forest Cover", "Proportion", UC_NONE}, +/* 30 */ {"DECFC", "Deciduous Forest Cover", "Proportion", UC_NONE}, +/* 31 */ {"NDVINX", "Normalized Differential Vegetation Index (NDVI)", "Numeric", UC_NONE}, +/* 32 */ {"RDVEG", "Root Depth of Vegetation", "m", UC_NONE}, +/* 33 */ {"WROD", "Water Runoff and Drainage", "kg/(m^2)", UC_NONE}, +/* 34 */ {"SFCWRO", "Surface Water Runoff", "kg/(m^2)", UC_NONE}, +/* 35 */ {"TCLASS", "Tile Class", "0=Reserved; 1=Evergreen broadleaved forest; " + "2=Deciduous broadleaved closed forest; 3=Deciduous broadleaved open forest; " + "4=Evergreen needle-leaf forest; 5=Deciduous needle-leaf forest; " + "6=Mixed leaf trees; 7=Fresh water flooded trees; 8=Saline water flooded trees; " + "9=Mosaic tree/natural vegetation; 10=Burnt tree cover; " + "11=Evergreen shurbs closed-open; 12=Deciduous shurbs closed-open; " + "13=Herbaceous vegetation closed-open; 14=Sparse herbaceous or grass; " + "15=Flooded shurbs or herbaceous; 16=Cultivated and managed areas; " + "17=Mosaic crop/tree/natural vegetation; 18=Mosaic crop/shrub/grass; " + "19=Bare areas; 20=Water; 21=Snow and ice; 22=Artificial surface; " + "23=Ocean; 24=Irrigated croplands; 25=Rain fed croplands; " + "26=Mosaic cropland (50-70%)-vegetation (20-50%); " + "27=Mosaic vegetation (50-70%)-cropland (20-50%); " + "28=Closed broadleaved evergreen forest; 29=Closed needle-leaved evergreen forest; " + "30=Open needle-leaved deciduous forest; 31=Mixed broadleaved and needle-leave forest; " + "32=Mosaic shrubland (50-70%)-grassland (20-50%); " + "33=Mosaic grassland (50-70%)-shrubland (20-50%); " + "34=Closed to open shrubland; 35=Sparse vegetation; " + "36=Closed to open forest regularly flooded; " + "37=Closed forest or shrubland permanently flooded; " + "38=Closed to open grassland regularly flooded; 39=Undefined; ", UC_NONE}, +/* 36 */ {"TFRCT", "Tile Fraction", "Proportion", UC_NONE}, +/* 37 */ {"TPERCT", "Tile Percentage", "%", UC_NONE}, +/* 38 */ {"SOILVIC", "Soil Volumetric Ice Content (Water Equivalent) ", "m^3/m^3", UC_NONE}, }; /* GRIB2 Code table 4.2 : 2.3 */ @@ -1383,6 +1569,16 @@ static const GRIB2ParmTable LandSoil[] = { /* 15 */ {"SOILP", "Soil porosity", "m^3/m^3", UC_NONE}, /* 16 */ {"VSOSM", "Volumetric saturation of soil moisture", "m^3/m^3", UC_NONE}, /* 17 */ {"SATOSM", "Saturation of soil moisture", "kg/m^3", UC_NONE}, +/* 18 */ {"SOILTMP", "Soil Temperature", "K", UC_NONE}, +/* 19 */ {"SOILMOI", "Soil Moisture", "kg/(m^3)", UC_NONE}, +/* 20 */ {"CISOILM", "Column-Integrated Soil Moisture", "kg/(m^2)", UC_NONE}, +/* 21 */ {"SOILICE", "Soil Ice", "kg/(m^3)", UC_NONE}, +/* 22 */ {"CISICE", "Column-Integrated Soil Ice", "kg/(m^2)", UC_NONE}, +/* 23 */ {"LWSNWP", "Liquid Water in Snow Pack", "kg/(m^2)", UC_NONE}, +/* 24 */ {"FRSTINX", "Frost Index", "kg/day", UC_NONE}, +/* 25 */ {"SNWDEB", "Snow Depth at Elevation Bands", "kg/(m^2)", UC_NONE}, +/* 26 */ {"SHFLX", "Soil Heat Flux", "W/(m^2)", UC_NONE}, +/* 27 */ {"SOILDEP", "Soil Depth", "m", UC_NONE}, }; /* GRIB2 Code table 4.2 : 3.0 */ @@ -1427,6 +1623,22 @@ static const GRIB2ParmTable SpaceQuantitative[] = { /* 11 */ {"RFL16", "Reflectance in 1.6 micron channel", "%", UC_NONE}, /* 12 */ {"RFL39", "Reflectance in 3.9 micron channel", "%", UC_NONE}, /* 13 */ {"ATMDIV", "Atmospheric divergence", "1/s", UC_NONE}, +/* 14 */ {"CBTMP", "Cloudy Brightness Temperature", "K", UC_NONE}, +/* 15 */ {"CSBTMP", "Clear Sky Brightness Temperature", "K", UC_NONE}, +/* 16 */ {"CLDRAD", "Cloudy Radiance (with respect to wave number)", "W/(m*sr)", UC_NONE}, +/* 17 */ {"CSKYRAD", "Clear Sky Radiance (with respect to wave number)", "W/(m*sr)", UC_NONE}, +/* 18 */ {"", "Reserved", "-", UC_NONE}, +/* 19 */ {"WINDS", "Wind Speed", "m/s", UC_NONE}, +/* 20 */ {"AOT06", "Aerosol Optical Thickness at 0.635 µm", "", UC_NONE}, +/* 21 */ {"AOT08", "Aerosol Optical Thickness at 0.810 µm", "", UC_NONE}, +/* 22 */ {"AOT16", "Aerosol Optical Thickness at 1.640 µm", "", UC_NONE}, +/* 23 */ {"ANGCOE", "Angstrom Coefficient", "", UC_NONE}, +/* 24 */ {"", "Reserved", "-", UC_NONE}, +/* 25 */ {"", "Reserved", "-", UC_NONE}, +/* 26 */ {"", "Reserved", "-", UC_NONE}, +/* 27 */ {"BRFLF", "Bidirectional Reflecance Factor", "Numeric", UC_NONE}, +/* 28 */ {"SPBRT", "Brightness Temperature", "K", UC_NONE}, +/* 29 */ {"SRAD", "Scaled Radiance", "Numeric", UC_NONE}, }; /* GRIB2 Code table 4.2 : 10.0 */ @@ -1434,7 +1646,7 @@ static const GRIB2ParmTable OceanWaves[] = { /* 0 */ {"WVSP1", "Wave spectra (1)", "-", UC_NONE}, /* 1 */ {"WVSP2", "Wave spectra (2)", "-", UC_NONE}, /* 2 */ {"WVSP3", "Wave spectra (3)", "-", UC_NONE}, - /* 3 */ {"HTSGW", "Significant height of combined wind waves and swell", "m", UC_NONE}, /* NDFD override needed WaveHeight */ + /* 3 */ {"HTSGW", "Significant height of combined wind waves and swell", "m", UC_M2Feet}, /* NDFD override needed WaveHeight */ /* 4 */ {"WVDIR", "Direction of wind waves", "Degree true", UC_NONE}, /* 5 */ {"WVHGT", "Significant height of wind waves", "m", UC_M2Feet}, /* NDFD override needed WaveHeight */ /* 6 */ {"WVPER", "Mean period of wind waves", "s", UC_NONE}, @@ -1445,6 +1657,38 @@ static const GRIB2ParmTable OceanWaves[] = { /* 11 */ {"PERPW", "Primary wave mean period", "s", UC_NONE}, /* 12 */ {"DIRSW", "Secondary wave direction", "Degree true", UC_NONE}, /* 13 */ {"PERSW", "Secondary wave mean period", "s", UC_NONE}, + /* 14 */ {"WWSDIR", "Direction of Combined Wind Waves and Swell", "Degree true", UC_NONE}, + /* 15 */ {"MWSPER", "Mean Period of Combined Wind Waves and Swell", "s", UC_NONE}, + /* 16 */ {"CDWW", "Coefficient of Drag With Waves", "-", UC_NONE}, + /* 17 */ {"FRICV", "Friction Velocity", "m/s", UC_NONE}, + /* 18 */ {"WSTR", "Wave Stress", "N/(m^2)", UC_NONE}, + /* 19 */ {"NWSTR", "Normalised Waves Stress", "-", UC_NONE}, + /* 20 */ {"MSSW", "Mean Square Slope of Waves", "-", UC_NONE}, + /* 21 */ {"USSD", "U-component Surface Stokes Drift", "m/s", UC_NONE}, + /* 22 */ {"VSSD", "V-component Surface Stokes Drift", "m/s", UC_NONE}, + /* 23 */ {"PMAXWH", "Period of Maximum Individual Wave Height", "s", UC_NONE}, + /* 24 */ {"MAXWH", "Maximum Individual Wave Height", "m", UC_NONE}, + /* 25 */ {"IMWF", "Inverse Mean Wave Frequency", "s", UC_NONE}, + /* 26 */ {"IMFWW", "Inverse Mean Frequency of The Wind Waves", "s", UC_NONE}, + /* 27 */ {"IMFTSW", "Inverse Mean Frequency of The Total Swell", "s", UC_NONE}, + /* 28 */ {"MZWPER", "Mean Zero-Crossing Wave Period", "s", UC_NONE}, + /* 29 */ {"MZPWW", "Mean Zero-Crossing Period of The Wind Waves", "s", UC_NONE}, + /* 30 */ {"MZPTSW", "Mean Zero-Crossing Period of The Total Swell", "s", UC_NONE}, + /* 31 */ {"WDIRW", "Wave Directional Width", "-", UC_NONE}, + /* 32 */ {"DIRWWW", "Directional Width of The Wind Waves", "-", UC_NONE}, + /* 33 */ {"DIRWTS", "Directional Width of The Total Swell", "-", UC_NONE}, + /* 34 */ {"PWPER", "Peak Wave Period", "s", UC_NONE}, + /* 35 */ {"PPERWW", "Peak Period of The Wind Waves", "s", UC_NONE}, + /* 36 */ {"PPERTS", "Peak Period of The Total Swell", "s", UC_NONE}, + /* 37 */ {"ALTWH", "Altimeter Wave Height", "m", UC_NONE}, + /* 38 */ {"ALCWH", "Altimeter Corrected Wave Height", "m", UC_NONE}, + /* 39 */ {"ALRRC", "Altimeter Range Relative Correction", "-", UC_NONE}, + /* 40 */ {"MNWSOW", "10 Metre Neutral Wind Speed Over Waves", "m/s", UC_NONE}, + /* 41 */ {"MWDIRW", "10 Metre Wind Direction Over Waves", "Degree true", UC_NONE}, + /* 42 */ {"WESP", "Wave Engery Spectrum", "s/((m^2)*rad)", UC_NONE}, + /* 43 */ {"KSSEW", "Kurtosis of The Sea Surface Elevation Due to Waves", "-", UC_NONE}, + /* 44 */ {"BENINX", "Benjamin-Feir Index", "-", UC_NONE}, + /* 45 */ {"SPFTR", "Spectral Peakedness Factor", "1/s", UC_NONE}, }; /* GRIB2 Code table 4.2 : 10.1 */ @@ -1453,6 +1697,7 @@ static const GRIB2ParmTable OceanCurrents[] = { /* 1 */ {"SPC", "Current speed", "m/s", UC_NONE}, /* 2 */ {"UOGRD", "u-component of current", "m/s", UC_NONE}, /* 3 */ {"VOGRD", "v-component of current", "m/s", UC_NONE}, + /* 4 */ {"RIPCOP", "Rip Current Occurrence Probability", "%", UC_NONE}, }; /* GRIB2 Code table 4.2 : 10.2 */ @@ -1466,12 +1711,17 @@ static const GRIB2ParmTable OceanIce[] = { /* 6 */ {"ICEG", "Ice growth rate", "m/s", UC_NONE}, /* 7 */ {"ICED", "Ice divergence", "1/s", UC_NONE}, /* 8 */ {"ICET", "Ice temperature", "K", UC_NONE}, + /* 9 */ {"ICEPRS", "Module of Ice Internal Pressure", "Pa*m", UC_NONE}, + /* 10 */ {"ZVCICEP", "Zonal Vector Component of Vertically Integrated Ice Internal Pressure", "Pa*m", UC_NONE}, + /* 11 */ {"MVCICEP", "Meridional Vector Component of Vertically Integrated Ice Internal Pressure", "Pa*m", UC_NONE}, + /* 12 */ {"CICES", "Compressive Ice Strength", "N/m", UC_NONE}, }; /* GRIB2 Code table 4.2 : 10.3 */ static const GRIB2ParmTable OceanSurface[] = { /* 0 */ {"WTMP", "Water temperature", "K", UC_NONE}, /* 1 */ {"DSLM", "Deviation of sea level from mean", "m", UC_NONE}, + /* 2 */ {"CH", "Heat Exchange Coefficient", "", UC_NONE}, }; #ifdef unused @@ -1481,6 +1731,18 @@ static const GRIB2ParmTable OceanSubSurface[] = { /* 1 */ {"MTHA", "Main thermocline anomaly", "m", UC_NONE}, /* 2 */ {"TTHDP", "Transient thermocline depth", "m", UC_NONE}, /* 3 */ {"SALTY", "Salinity", "kg/kg", UC_NONE}, + /* 4 */ {"OVHD", "Ocean Vertical Heat Diffusivity", "m^2/s", UC_NONE}, + /* 5 */ {"OVSD", "Ocean Vertical Salt Diffusivity", "m^2/s", UC_NONE}, + /* 6 */ {"OVMD", "Ocean Vertical Momentum Diffusivity", "m^2/s", UC_NONE}, + /* 7 */ {"BATHY", "Bathymetry", "m", UC_NONE}, + /* 8 */ {"", "Reserved", "-", UC_NONE}, + /* 9 */ {"", "Reserved", "-", UC_NONE}, + /* 10 */ {"", "Reserved", "-", UC_NONE}, + /* 11 */ {"SFSALP", "Shape Factor With Respect To Salinity Profile", "", UC_NONE}, + /* 12 */ {"SFTMPP", "Shape Factor With Respect To Temperature Profile In Thermocline", "", UC_NONE}, + /* 13 */ {"ACWSRD", "Attenuation Coefficient Of Water With Respect to Solar Radiation", "1/m", UC_NONE}, + /* 14 */ {"WDEPTH", "Water Depth", "m", UC_NONE}, + /* 15 */ {"WTMPSS", "Water Temperature", "K", UC_NONE}, }; #endif @@ -1489,6 +1751,8 @@ static const GRIB2ParmTable OceanMisc[] = { /* 0 */ {"TSEC", "Seconds prior to initial reference time (defined in Section" " 1)", "s", UC_NONE}, /* 1 */ {"MOSF", "Meridonal Overturning Stream Function", "m^3/s", UC_NONE}, + /* 2 */ {"", "Reserved", "-", UC_NONE}, + /* 3 */ {"DSLOBS", "Days Since Last Observation", "d", UC_NONE}, }; /* *INDENT-ON* */ @@ -1585,8 +1849,8 @@ static const GRIB2ParmTable *Choose_GRIB2ParmTable (int prodType, int cat, *tableLen = sizeof (MeteoRadarImagery) / sizeof (GRIB2ParmTable); return &MeteoRadarImagery[0]; case METEO_ELECTRO: - *tableLen = 0; - return nullptr; + *tableLen = sizeof (MeteoElectro) / sizeof (GRIB2ParmTable); + return &MeteoElectro[0]; case METEO_NUCLEAR: *tableLen = sizeof (MeteoNuclear) / sizeof (GRIB2ParmTable); return &MeteoNuclear[0]; @@ -1692,6 +1956,7 @@ static const NDFD_AbrevOverrideTable NDFD_Override[] = { static const GRIB2LocalTable NDFD_LclTable[] = { /* 0 */ {0, 0, 193, "ApparentT", "Apparent Temperature", "K", UC_K2F}, + {0, 0, 205, "WBGT", "Wet Bulb Globe Temperature", "K", UC_K2F}, /* 1 */ {0, 1, 192, "Wx", "Weather string", "-", UC_NONE}, {0, 1, 193, "PPI", "Precipitation Potential Index", "%", UC_NONE}, {0, 1, 227, "IceAccum", "Ice Accumulation", "kg/m^2", UC_InchWater}, @@ -1721,6 +1986,7 @@ static const GRIB2LocalTable NDFD_LclTable[] = { {0, 19, 236, "TCSurge", "Tropical Cyclone Storm Surge Threat", "0=none; 4=low; 6=moderate; 8=high; 10=extreme", UC_NONE}, {0, 19, 238, "TCRain", "Tropical Cyclone Flooding Rain Threat", "0=none; 4=low; 6=moderate; 8=high; 10=extreme", UC_NONE}, {0, 19, 239, "TCTornado", "Tropical Cyclone Tornado Threat", "0=none; 4=low; 6=moderate; 8=high; 10=extreme", UC_NONE}, + {0, 19, 246, "SNOWLVL", "Snow Level", "m", UC_M2Feet}, /* Leaving next two lines in for grandfathering sake. 9/19/2007... Probably can remove in future. */ {0, 19, 203, "TotalSvrProb", "Total Probability of Severe Thunderstorms", "%", UC_NONE}, {0, 19, 204, "TotalXtrmProb", "Total Probability of Extreme Severe Thunderstorms", "%", UC_NONE}, @@ -1741,6 +2007,16 @@ static const GRIB2LocalTable HPC_LclTable[] = { /* 0 */ {0, 1, 192, "HPC-Wx", "HPC Code", "-", UC_NONE}, }; + +static const GRIB2LocalTable Canada_LclTable[] = { + /* 0 */ {0, 4, 192, "DSWRF_SFC_0", "Downward incident solar flux", "W/m^2", UC_NONE}, + /* 0 */ {0, 4, 193, "USWRF_SFC_0", "Upward short wave radiative flux", "W/m^2", UC_NONE}, + /* 0 */ {0, 5, 192, "DLWRF_SFC_0", "Downward Long Wave Radiative Flux", "W/m^2", UC_NONE}, + /* 0 */ {0, 5, 193, "ULWRF_0", "Outgoing Long Wave Radiative Flux", "W/m^2", UC_NONE} +}; + + + /* See ./degrib/MRMS folder (specifically run ./reformat.tcl > degribtab.c) */ /* 10/21/2014 */ static const GRIB2LocalTable MRMS_LclTable[] = { @@ -1926,6 +2202,15 @@ static const GRIB2LocalTable NCEP_LclTable[] = { * descriptor, but the NDFD 'Weather String' seems quite reasonable. */ /* {0, 1, 226, "PWTHER", "Predominant Weather", "-", UC_NONE},*/ {0, 1, 226, "Wx", "Weather String", "-", UC_NONE}, + {0, 1, 227, "FROZR", "Frozen Rain", "kg/(m^2)", UC_NONE}, + {0, 1, 228, "FICEAC", "Flat Ice Accumulation (FRAM)", "kg/(m^2)", UC_NONE}, + {0, 1, 229, "LICEAC", "Line Ice Accumulation (FRAM)", "kg/(m^2)", UC_NONE}, + {0, 1, 230, "SLACC", "Sleet Accumulation", "kg/(m^2)", UC_NONE}, + {0, 1, 231, "PPINDX", "Precipitation Potential Index", "%", UC_NONE}, + {0, 1, 232, "PROBCIP", "Probability Cloud Ice Present", "%", UC_NONE}, + {0, 1, 233, "SNOWLR", "Snow Liquid ratio", "kg/kg", UC_NONE}, + {0, 1, 241, "TSNOW", "Total Snow", "kg/(m^2)", UC_NONE}, + {0, 1, 242, "RHPW", "Relative Humidity with Respect to Precipitable Water", "%", UC_NONE}, /* 15 */ {0, 2, 192, "VWSH", "Vertical speed sheer", "1/s", UC_NONE}, /* 16 */ {0, 2, 193, "MFLX", "Horizontal Momentum Flux", "N/(m^2)", UC_NONE}, @@ -1955,6 +2240,17 @@ static const GRIB2LocalTable NCEP_LclTable[] = { {0, 2, 217, "CNGWDV", "Convective Gravity wave drag meridional acceleration", "m/s^2", UC_NONE}, {0, 2, 218, "LMV", "Velocity point model surface", "-", UC_NONE}, {0, 2, 219, "PVMWW", "Potential vorticity (mass-weighted)", "1/(s/m)", UC_NONE}, + {0, 2, 220, "MAXUVV", "Hourly Maximum of Downward Vertical Velocity in the lowest 400hPa", "m/s", UC_NONE}, + {0, 2, 221, "MAXDVV", "Hourly Maximum of Downward Vertical Velocity", "m/s", UC_NONE}, + {0, 2, 222, "MAXUW", "U Component of Hourly Maximum 10m Wind Speed", "m/s", UC_NONE}, + {0, 2, 223, "MAXVW", "V Component of Hourly Maximum 10m Wind Speed", "m/s", UC_NONE}, + {0, 2, 224, "VRATE", "Ventilation Rate", "m^2/s", UC_NONE}, + {0, 2, 225, "TRWSPD", "Transport Wind Speed", "m/s", UC_NONE}, + {0, 2, 226, "TRWDIR", "Transport Wind Direction", "deg", UC_NONE}, + {0, 2, 227, "TOA10", "Earliest Reasonable Arrival Time (10% exceedance)", "s", UC_NONE}, + {0, 2, 228, "TOA50", "Most Likely Arrival Time (50% exceedance)", "s", UC_NONE}, + {0, 2, 229, "TOD50", "Most Likely Departure Time (50% exceedance)", "s", UC_NONE}, + {0, 2, 230, "TOD90", "Latest Reasonable Departure Time (90% exceedance)", "s", UC_NONE}, /* Removed 8/19/2008 */ /* {0, 2, 220, "MFLX", "Momentum flux", "N/m^2", UC_NONE},*/ /* 21 */ {0, 3, 192, "MSLET", "MSLP (Eta model reduction)", "Pa", UC_NONE}, @@ -1978,6 +2274,15 @@ static const GRIB2LocalTable NCEP_LclTable[] = { {0, 3, 210, "LMH", "Mass point model surface", "-", UC_NONE}, {0, 3, 211, "HGTN", "Geopotential height (nearest grid point)", "gpm", UC_NONE}, {0, 3, 212, "PRESN", "Pressure (nearest grid point)", "Pa", UC_NONE}, + {0, 3, 213, "ORCONV", "Orographic Convexity", "", UC_NONE}, + {0, 3, 214, "ORASW", "Orographic Asymmetry, W Component", "", UC_NONE}, + {0, 3, 215, "ORASS", "Orographic Asymmetry, S Component", "", UC_NONE}, + {0, 3, 216, "ORASSW", "Orographic Asymmetry, SW Component", "", UC_NONE}, + {0, 3, 217, "ORASNW", "Orographic Asymmetry, NW Component", "", UC_NONE}, + {0, 3, 218, "ORLSW", "Orographic Length Scale, W Component", "", UC_NONE}, + {0, 3, 219, "ORLSS", "Orographic Length Scale, S Component", "", UC_NONE}, + {0, 3, 220, "ORLSSW", "Orographic Length Scale, SW Component", "", UC_NONE}, + {0, 3, 221, "ORLSNW", "Orographic Length Scale, NW Component", "", UC_NONE}, /* 27 */ {0, 4, 192, "DSWRF", "Downward Short-Wave Rad. Flux", "W/(m^2)", UC_NONE}, /* 28 */ {0, 4, 193, "USWRF", "Upward Short-Wave Rad. Flux", "W/(m^2)", UC_NONE}, @@ -2019,6 +2324,10 @@ static const GRIB2LocalTable NCEP_LclTable[] = { {0, 7, 196, "UVI", "Ultra Violet Index", "W/(m^2)", UC_UVIndex}, {0, 7, 197, "UPHL", "Updraft Helicity", "m^2/s^2", UC_NONE}, {0, 7, 198, "LAI", "Leaf area index", "-", UC_NONE}, + {0, 7, 199, "MXUPHL", "Hourly Maximum of Updraft Helicity over Layer 2km to 5 km AGL", "m^2/s^2", UC_NONE}, + {0, 7, 200, "MNUPHL", "Hourly Minimum of Updraft Helicity", "m^2/s^2", UC_NONE}, + {0, 7, 201, "BNEGLAY", "Bourgoiun Negative Energy Layer (surface to freezing level)", "J/kg", UC_NONE}, + {0, 7, 202, "BPOSELAY", "Bourgoiun Positive Energy Layer (2k ft AGL to 400 hPa)", "J/kg", UC_NONE}, {0, 13, 192, "PMTC", "Particulate matter (coarse)", "10^-6g/m^3", UC_NONE}, {0, 13, 193, "PMTF", "Particulate matter (fine)", "10^-6g/m^3", UC_NONE}, @@ -2046,6 +2355,7 @@ static const GRIB2LocalTable NCEP_LclTable[] = { {0, 16, 195, "REFD", "Derived radar reflectivity", "dB", UC_NONE}, {0, 16, 196, "REFC", "Maximum / Composite radar reflectivity", "dB", UC_NONE}, {0, 16, 197, "RETOP", "Radar Echo Top (18.3 DBZ)", "m", UC_NONE}, + {0, 16, 198, "MAXREF", "Hourly Maximum of Simulated Reflectivity at 1 km AGL", "dB", UC_NONE}, {0, 17, 192, "LTNG", "Lightning", "-", UC_NONE}, @@ -2114,7 +2424,10 @@ static const GRIB2LocalTable NCEP_LclTable[] = { */ {0, 19, 232, "VAFTD", "Volcanic Ash Forecast Transport and Dispersion", "log10(kg/m^3)", UC_NONE}, {0, 19, 233, "ICPRB", "Icing probability", "-", UC_NONE}, - {0, 19, 234, "ICSEV", "Icing severity", "-", UC_NONE}, + {0, 19, 234, "ICSEV", "Icing severity", "-", UC_NONE}, + {0, 19, 235, "JFWPRB", "Joint Fire Weather Probability", "%", UC_NONE}, + {0, 19, 236, "SNOWLVL", "Snow Level", "m", UC_NONE}, + {0, 19, 237, "DRYTPROB", "Dry Thunderstorm Probability", "%", UC_NONE}, /* 47 */ {0, 191, 192, "NLAT", "Latitude (-90 to 90)", "deg", UC_NONE}, /* 48 */ {0, 191, 193, "ELON", "East Longitude (0 to 360)", "deg", UC_NONE}, @@ -2204,6 +2517,7 @@ static const GRIB2LocalTable NCEP_LclTable[] = { /* ScatEstUWind -> USCT, ScatEstVWind -> VSCT as of 7/5/2006 (pre 1.80) */ /* 72 */ {3, 1, 192, "USCT", "Scatterometer Estimated U Wind", "m/s", UC_NONE}, /* 73 */ {3, 1, 193, "VSCT", "Scatterometer Estimated V Wind", "m/s", UC_NONE}, + {3, 1, 194, "SWQI", "Scatterometer Wind Quality", "", UC_NONE}, /* table 4.2 : 3.192 according to NCEP is "Forecast Satellite Imagery". */ {3, 192, 0, "SBT122", "Simulated Brightness Temperature for GOES 12, Channel 2", "K", UC_NONE}, @@ -2212,8 +2526,49 @@ static const GRIB2LocalTable NCEP_LclTable[] = { {3, 192, 3, "SBT125", "Simulated Brightness Temperature for GOES 12, Channel 5", "K", UC_NONE}, {3, 192, 4, "SBC123", "Simulated Brightness Counts for GOES 12, Channel 3", "numeric", UC_NONE}, {3, 192, 5, "SBC124", "Simulated Brightness Counts for GOES 12, Channel 4", "numeric", UC_NONE}, + {3, 192, 6, "SBT112", "Simulated Brightness Temperature for GOES 11, Channel 2", "K", UC_NONE}, + {3, 192, 7, "SBT113", "Simulated Brightness Temperature for GOES 11, Channel 3", "K", UC_NONE}, + {3, 192, 8, "SBT114", "Simulated Brightness Temperature for GOES 11, Channel 4", "K", UC_NONE}, + {3, 192, 9, "SBT115", "Simulated Brightness Temperature for GOES 11, Channel 5", "K", UC_NONE}, + {3, 192, 10, "AMSRE9", "Simulated Brightness Temperature for AMSRE on Aqua, Channel 9", "K", UC_NONE}, + {3, 192, 11, "AMSRE10", "Simulated Brightness Temperature for AMSRE on Aqua, Channel 10", "K", UC_NONE}, + {3, 192, 12, "AMSRE11", "Simulated Brightness Temperature for AMSRE on Aqua, Channel 11", "K", UC_NONE}, + {3, 192, 13, "AMSRE12", "Simulated Brightness Temperature for AMSRE on Aqua, Channel 12", "K", UC_NONE}, + {3, 192, 14, "SRFA161", "Simulated Reflectance Factor for ABI GOES-16, Band-1", "", UC_NONE}, + {3, 192, 15, "SRFA162", "Simulated Reflectance Factor for ABI GOES-16, Band-2", "", UC_NONE}, + {3, 192, 16, "SRFA163", "Simulated Reflectance Factor for ABI GOES-16, Band-3", "", UC_NONE}, + {3, 192, 17, "SRFA164", "Simulated Reflectance Factor for ABI GOES-16, Band-4", "", UC_NONE}, + {3, 192, 18, "SRFA165", "Simulated Reflectance Factor for ABI GOES-16, Band-5", "", UC_NONE}, + {3, 192, 19, "SRFA166", "Simulated Reflectance Factor for ABI GOES-16, Band-6", "", UC_NONE}, + {3, 192, 20, "SBTA167", "Simulated Brightness Temperature for ABI GOES-16, Band-7", "K", UC_NONE}, + {3, 192, 21, "SBTA168", "Simulated Brightness Temperature for ABI GOES-16, Band-8", "K", UC_NONE}, + {3, 192, 22, "SBTA169", "Simulated Brightness Temperature for ABI GOES-16, Band-9", "K", UC_NONE}, + {3, 192, 23, "SBTA1610", "Simulated Brightness Temperature for ABI GOES-16, Band-10", "K", UC_NONE}, + {3, 192, 24, "SBTA1611", "Simulated Brightness Temperature for ABI GOES-16, Band-11", "K", UC_NONE}, + {3, 192, 25, "SBTA1612", "Simulated Brightness Temperature for ABI GOES-16, Band-12", "K", UC_NONE}, + {3, 192, 26, "SBTA1613", "Simulated Brightness Temperature for ABI GOES-16, Band-13", "K", UC_NONE}, + {3, 192, 27, "SBTA1614", "Simulated Brightness Temperature for ABI GOES-16, Band-14", "K", UC_NONE}, + {3, 192, 28, "SBTA1615", "Simulated Brightness Temperature for ABI GOES-16, Band-15", "K", UC_NONE}, + {3, 192, 29, "SBTA1616", "Simulated Brightness Temperature for ABI GOES-16, Band-16", "K", UC_NONE}, + {3, 192, 30, "SRFA171", "Simulated Reflectance Factor for ABI GOES-17, Band-1", "", UC_NONE}, + {3, 192, 31, "SRFA172", "Simulated Reflectance Factor for ABI GOES-17, Band-2", "", UC_NONE}, + {3, 192, 32, "SRFA173", "Simulated Reflectance Factor for ABI GOES-17, Band-3", "", UC_NONE}, + {3, 192, 33, "SRFA174", "Simulated Reflectance Factor for ABI GOES-17, Band-4", "", UC_NONE}, + {3, 192, 34, "SRFA175", "Simulated Reflectance Factor for ABI GOES-17, Band-5", "", UC_NONE}, + {3, 192, 35, "SRFA176", "Simulated Reflectance Factor for ABI GOES-17, Band-6", "", UC_NONE}, + {3, 192, 36, "SBTA177", "Simulated Brightness Temperature for ABI GOES-17, Band-7", "K", UC_NONE}, + {3, 192, 37, "SBTA178", "Simulated Brightness Temperature for ABI GOES-17, Band-8", "K", UC_NONE}, + {3, 192, 38, "SBTA179", "Simulated Brightness Temperature for ABI GOES-17, Band-9", "K", UC_NONE}, + {3, 192, 39, "SBTA1710", "Simulated Brightness Temperature for ABI GOES-17, Band-10", "K", UC_NONE}, + {3, 192, 40, "SBTA1711", "Simulated Brightness Temperature for ABI GOES-17, Band-11", "K", UC_NONE}, + {3, 192, 41, "SBTA1712", "Simulated Brightness Temperature for ABI GOES-17, Band-12", "K", UC_NONE}, + {3, 192, 42, "SBTA1713", "Simulated Brightness Temperature for ABI GOES-17, Band-13", "K", UC_NONE}, + {3, 192, 43, "SBTA1714", "Simulated Brightness Temperature for ABI GOES-17, Band-14", "K", UC_NONE}, + {3, 192, 44, "SBTA1715", "Simulated Brightness Temperature for ABI GOES-17, Band-15", "K", UC_NONE}, + {3, 192, 45, "SBTA1716", "Simulated Brightness Temperature for ABI GOES-17, Band-16", "K", UC_NONE}, {10, 0, 192, "WSTP", "Wave Steepness", "0", UC_NONE}, + {10, 0, 193, "WLENG", "Wave Length", "0", UC_NONE}, /* The following entry was moved to 10,3,196 */ /* @@ -2241,6 +2596,7 @@ static const GRIB2LocalTable NCEP_LclTable[] = { {10, 3, 200, "SSST", "Surface Salinity Trend", "psu/day", UC_NONE}, {10, 3, 201, "KENG", "Kinetic Energy", "J/kg", UC_NONE}, {10, 3, 202, "SLTFL", "Salt Flux", "kg/(m^2*s)", UC_NONE}, + {10, 3, 203, "LCH", "Heat Exchange Coefficient", "", UC_NONE}, {10, 3, 242, "TCSRG20", "20% Tropical Cyclone Storm Surge Exceedance", "m", UC_M2Feet}, {10, 3, 243, "TCSRG30", "30% Tropical Cyclone Storm Surge Exceedance", "m", UC_M2Feet}, @@ -2250,6 +2606,10 @@ static const GRIB2LocalTable NCEP_LclTable[] = { {10, 3, 247, "TCSRG70", "70% Tropical Cyclone Storm Surge Exceedance", "m", UC_M2Feet}, {10, 3, 248, "TCSRG80", "80% Tropical Cyclone Storm Surge Exceedance", "m", UC_M2Feet}, {10, 3, 249, "TCSRG90", "90% Tropical Cyclone Storm Surge Exceedance", "m", UC_M2Feet}, + {10, 3, 250, "ETCWL", "Extra Tropical Storm Surge Combined Surge and Tide", "m", UC_M2Feet}, + {10, 3, 251, "TIDE", "Tide", "m", UC_M2Feet}, + {10, 3, 252, "EROSNP", "Erosion Occurrence Probability", "%", UC_NONE}, + {10, 3, 253, "OWASHP", "Overwash Occurrence Probability", "%", UC_NONE}, {10, 4, 192, "WTMPC", "3-D Temperature", "deg C", UC_NONE}, {10, 4, 193, "SALIN", "3-D Salinity", "", UC_NONE}, @@ -2331,6 +2691,9 @@ static const GRIB2LocalTable *Choose_LocalParmTable (unsigned short int center, *tableLen = 0; return nullptr; } + case 54: + *tableLen = sizeof (Canada_LclTable) / sizeof (GRIB2LocalTable); + return &Canada_LclTable[0]; case 161: *tableLen = sizeof (MRMS_LclTable) / sizeof (GRIB2LocalTable); return &MRMS_LclTable[0]; @@ -2771,6 +3134,24 @@ static void ElemNamePerc (uChar mstrVersion, uShort2 center, uShort2 subcenter, IsData_MOS (center, subcenter)) { for (i = 0; i < (sizeof (NDFD_Override) / sizeof (NDFD_AbrevOverrideTable)); i++) { + if (strcmp (table[subcat].name, "ASNOW") == 0) { + if (timeRangeUnit == 3) { + mallocSprintf (name, "%s%02dm%s%02dm", "Snow", lenTime, "e", percentile); + mallocSprintf (comment, "%02d mon %s Percentile(%d)", lenTime, + table[subcat].comment, percentile); + } else if (timeRangeUnit == 4) { + mallocSprintf (name, "%s%02dy%s%02dy", "Snow", lenTime, "e", percentile); + mallocSprintf (comment, "%02d yr %s Percentile(%d)", lenTime, + table[subcat].comment, percentile); + } else { + mallocSprintf (name, "%s%02d%s%02d", "Snow", lenTime, "e", percentile); + mallocSprintf (comment, "%02d hr %s Percentile(%d)", lenTime, + table[subcat].comment, percentile); + } + mallocSprintf (unit, "[%s]", table[subcat].unit); + *convert = table[subcat].convert; + return; + } if (strcmp (NDFD_Override[i].GRIB2name, table[subcat].name) == 0) { mallocSprintf (name, "%s%02d", NDFD_Override[i].NDFDname, @@ -3138,7 +3519,9 @@ void ParseElemName (CPL_UNUSED uChar mstrVersion, uShort2 center, uShort2 subcen int templat, int cat, int subcat, sInt4 lenTime, uChar timeRangeUnit, CPL_UNUSED uChar statProcessID, uChar timeIncrType, uChar genID, uChar probType, - double lowerProb, double upperProb, char **name, + double lowerProb, double upperProb, + uChar derivedFcst, + char **name, char **comment, char **unit, int *convert, sChar percentile, uChar genProcess, sChar f_fstValue, double fstSurfValue, @@ -3172,6 +3555,34 @@ void ParseElemName (CPL_UNUSED uChar mstrVersion, uShort2 center, uShort2 subcen upperProb, name, comment, unit, convert, f_fstValue, fstSurfValue, f_sndValue, sndSurfValue); } + + // https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-7.shtml + if( derivedFcst == 2 // Standard Deviation with respect to Cluster Mean + || derivedFcst == 3 // Standard Deviation with respect to Cluster Mean, Normalized + || derivedFcst == 4 // Spread of All Members + || derivedFcst == 5 // Large Anomaly Index of All Members + || derivedFcst == 7 // Interquartile Range (Range between the 25th and 75th quantile) + ) + { + const char* overrideUnit = nullptr; + switch( derivedFcst ) + { + case 2: overrideUnit = "[stddev]"; break; + case 3: overrideUnit = "[stddev normalized]"; break; + case 4: overrideUnit = "[spread]"; break; + case 5: overrideUnit = "[large anomaly index]"; break; + case 7: overrideUnit = "[interquantile range]"; break; + default: break; + } + if( overrideUnit ) + { + free(*unit); + *unit = (char *) malloc (strlen (overrideUnit) + 1); + strcpy (*unit, overrideUnit); + } + *convert = UC_NONE; + } + if ((genProcess == 6) || (genProcess == 7)) { *convert = UC_NONE; reallocSprintf (name, "ERR"); @@ -3598,49 +4009,55 @@ static int ComputeUnit2 (int prodType, int templat, int cat, int subcat, /* GRIB2 Code Table 4.5 */ /* *INDENT-OFF* */ -static const GRIB2SurfTable Surface[] = { - /* 0 */ {"RESERVED", "Reserved", "-"}, - /* 1 */ {"SFC", "Ground or water surface", "-"}, - /* 2 */ {"CBL", "Cloud base level", "-"}, - /* 3 */ {"CTL", "Level of cloud tops", "-"}, - /* 4 */ {"0DEG", "Level of 0 degree C isotherm", "-"}, - /* 5 */ {"ADCL", "Level of adiabatic condensation lifted from the surface", "-"}, - /* 6 */ {"MWSL", "Maximum wind level", "-"}, - /* 7 */ {"TRO", "Tropopause", "-"}, - /* 8 */ {"NTAT", "Nominal top of atmosphere", "-"}, - /* 9 */ {"SEAB", "Sea bottom", "-"}, - /* 10: 10-19 */ {"RESERVED", "Reserved", "-"}, - /* 11: 20 */ {"TMPL", "Isothermal level", "K"}, - /* 12: 21-99 */ {"RESERVED", "Reserved", "-"}, - /* 13: 100 */ {"ISBL", "Isobaric surface", "Pa"}, - /* 14: 101 */ {"MSL", "Mean sea level", "-"}, - /* 15: 102 */ {"GPML", "Specific altitude above mean sea level", "m"}, - /* 16: 103 */ {"HTGL", "Specified height level above ground", "m"}, - /* 17: 104 */ {"SIGL", "Sigma level", "'sigma' value"}, - /* 18: 105 */ {"HYBL", "Hybrid level", "-"}, - /* 19: 106 */ {"DBLL", "Depth below land surface", "m"}, - /* 20: 107 */ {"THEL", "Isentropic (theta) level", "K"}, - /* 21: 108 */ {"SPDL", "Level at specified pressure difference from ground to level", "Pa"}, - /* 22: 109 */ {"PVL", "Potential vorticity surface", "(K m^2)/(kg s)"}, - /* 23: 110 */ {"RESERVED", "Reserved", "-"}, - /* 24: 111 */ {"EtaL", "Eta* level", "-"}, - /* 25: 112-116 */ {"RESERVED", "Reserved", "-"}, - /* 26: 117 */ {"unknown", "Mixed layer depth", "m"}, /* unknown abbrev */ - /* 27: 118-159 */ {"RESERVED", "Reserved", "-"}, - /* 28: 160 */ {"DBSL", "Depth below sea level", "m"}, - /* 29: 161-191 */ {"RESERVED", "Reserved", "-"}, - /* 30: 192-254 */ {"RESERVED", "Reserved Local use", "-"}, - /* 31: 255 */ {"MISSING", "Missing", "-"}, -}; + typedef struct { int index; GRIB2SurfTable surface; -} GRIB2LocalSurface; +} GRIB2SurfTableWithIdx; -/* based on http://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_table4-5.shtml - * updated last on 3/14/2006 */ -static const GRIB2LocalSurface NCEP_Surface[] = { +// Substantially changed by GDAL +static const GRIB2SurfTableWithIdx Surface[] = { + {0, {"RESERVED", "Reserved", "-"}}, + {1, {"SFC", "Ground or water surface", "-"}}, + {2, {"CBL", "Cloud base level", "-"}}, + {3, {"CTL", "Level of cloud tops", "-"}}, + {4, {"0DEG", "Level of 0 degree C isotherm", "-"}}, + {5, {"ADCL", "Level of adiabatic condensation lifted from the surface", "-"}}, + {6, {"MWSL", "Maximum wind level", "-"}}, + {7, {"TRO", "Tropopause", "-"}}, + {8, {"NTAT", "Nominal top of atmosphere", "-"}}, + {9, {"SEAB", "Sea bottom", "-"}}, + {10, {"EATM", "Entire Atmosphere", "-"}}, + {11, {"CB", "Cumulonimbus Base", "m"}}, + {12, {"CT", "Cumulonimbus Top", "m"}}, + {13, {"unknown", "Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover)", "%"}}, + {14, {"LFC", "Level of free convection", "-"}}, + {15, {"CCL", "Convection condensation level", "-"}}, + {16, {"LNB", "Level of neutral buoyancy or equilibrium", "-"}}, + {17, {"RESERVED", "Reserved", "-"}}, + {20, {"TMPL", "Isothermal level", "K"}}, + {21, {"RESERVED", "Reserved", "-"}}, + {100, {"ISBL", "Isobaric surface", "Pa"}}, + {101, {"MSL", "Mean sea level", "-"}}, + {102, {"GPML", "Specific altitude above mean sea level", "m"}}, + {103, {"HTGL", "Specified height level above ground", "m"}}, + {104, {"SIGL", "Sigma level", "'sigma' value"}}, + {105, {"HYBL", "Hybrid level", "-"}}, + {106, {"DBLL", "Depth below land surface", "m"}}, + {107, {"THEL", "Isentropic (theta) level", "K"}}, + {108, {"SPDL", "Level at specified pressure difference from ground to level", "Pa"}}, + {109, {"PVL", "Potential vorticity surface", "(K m^2)/(kg s)"}}, + {110, {"RESERVED", "Reserved", "-"}}, + {111, {"EtaL", "Eta* level", "-"}}, + {112, {"RESERVED", "Reserved", "-"}}, + {114, {"SNOWLVL", "Snow Level", "m"}}, + {115, {"RESERVED", "Reserved", "-"}}, + {117, {"unknown", "Mixed layer depth", "m"}}, /* unknown abbrev */ + {118, {"RESERVED", "Reserved", "-"}}, + {160, {"DBSL", "Depth below sea level", "m"}}, + {161, {"RESERVED", "Reserved", "-"}}, + {192, {"RESERVED", "Reserved Local use", "-"}}, {200, {"EATM", "Entire atmosphere (considered as a single layer)", "-"}}, {201, {"EOCN", "Entire ocean (considered as a single layer)", "-"}}, {204, {"HTFL", "Highest tropospheric freezing level", "-"}}, @@ -3675,6 +4092,7 @@ static const GRIB2LocalSurface NCEP_Surface[] = { {252, {"DCTL", "Deep convective cloud top level", "-"}}, {253, {"LBLSW", "Lowest bottom level of supercooled liquid water layer", "-"}}, {254, {"HTLSW", "Highest top level of supercooled liquid water layer", "-"}}, + {255, {"MISSING", "Missing", "-"}}, }; /* *INDENT-ON* */ @@ -3713,59 +4131,33 @@ GRIB2SurfTable Table45Index (int i, #ifdef DEBUG printf ("Surface index is out of 0..255 range?\n"); #endif - return Surface[0]; + return Surface[0].surface; } - if (i == 255) - return Surface[31]; - if (i > 191) { - if (center == 7) { - for (j = 0; j < sizeof (NCEP_Surface) / sizeof (NCEP_Surface[0]); - j++) { - if (i == NCEP_Surface[j].index) { - *f_reserved = 0; - return (NCEP_Surface[j].surface); - } - } - } - return Surface[30]; - } - if (i > 160) - return Surface[29]; - if (i == 160) { - *f_reserved = 0; - return Surface[28]; - } - if (i > 117) - return Surface[27]; - if (i == 117) { - *f_reserved = 0; - return Surface[26]; - } - if (i > 111) - return Surface[25]; - if (i == 111) { - *f_reserved = 0; - return Surface[i - 87]; - } - if (i == 110) - return Surface[i - 87]; - if (i > 99) { - *f_reserved = 0; - return Surface[i - 87]; - } - if (i > 20) - return Surface[12]; - if (i == 20) { - *f_reserved = 0; - return Surface[11]; + + // Substantially changed by GDAL + *f_reserved = 0; + if( i > 191 && i < 255 &¢er != 7) { + *f_reserved = 1; + return Surface[0].surface; } - if (i > 9) - return Surface[10]; - if (i > 0) { - *f_reserved = 0; - return Surface[i]; + for( j = sizeof(Surface) / sizeof(Surface[0]); j > 0; ) + { + --j; + if( i >= Surface[j].index ) + { + if( i > 191 && i < 255 ) + { + if( i != Surface[j].index ) + { + *f_reserved = 1; + return Surface[0].surface; + } + } + return Surface[j].surface; + } } - return Surface[0]; + myAssert(false); + return Surface[0].surface; } void ParseLevelName (unsigned short int center, unsigned short int subcenter, diff --git a/gdal/frmts/grib/degrib/degrib/metaname.h b/gdal/frmts/grib/degrib/degrib/metaname.h index ec3372ece31a..8c4e7d9bd9bc 100644 --- a/gdal/frmts/grib/degrib/degrib/metaname.h +++ b/gdal/frmts/grib/degrib/degrib/metaname.h @@ -19,7 +19,9 @@ void ParseElemName (uChar mstrVersion, uShort2 center, uShort2 subcenter, int pr int templat, int cat, int subcat, sInt4 lenTime, uChar timeRangeUnit, uChar statProcessID, uChar timeIncrType, uChar genID, uChar probType, - double lowerProb, double upperProb, char **name, + double lowerProb, double upperProb, + uChar derivedFcst, + char **name, char **comment, char **unit, int *convert, sChar percentile, uChar genProcess, sChar f_fstValue, double fstSurfValue, diff --git a/gdal/frmts/grib/degrib/degrib/metaparse.cpp b/gdal/frmts/grib/degrib/degrib/metaparse.cpp index 5d2aa94d3afc..f3f7fa1d2c38 100644 --- a/gdal/frmts/grib/degrib/degrib/metaparse.cpp +++ b/gdal/frmts/grib/degrib/degrib/metaparse.cpp @@ -1558,7 +1558,7 @@ static int ParseSect4 (sInt4 *is4, sInt4 ns4, grib_MetaData *meta) (is4[7] != GS4_PERCENT_TIME) && (is4[7] != GS4_ENSEMBLE_STAT) && (is4[7] != GS4_SATELLITE) && (is4[7] != GS4_SATELLITE_SYNTHETIC) && (is4[7] != GS4_DERIVED_INTERVAL) && (is4[7] != GS4_STATISTIC_SPATIAL_AREA) && - (is4[7] != GS4_ANALYSIS_CHEMICAL)) { + (is4[7] != GS4_ANALYSIS_CHEMICAL) && (is4[7] != GS4_OPTICAL_PROPERTIES_AEROSOL)) { #ifdef DEBUG //printf ("Un-supported Template. %d\n", is4[7]); #endif @@ -1575,14 +1575,23 @@ static int ParseSect4 (sInt4 *is4, sInt4 ns4, grib_MetaData *meta) } meta->pds2.sect4.cat = (uChar) is4[9]; meta->pds2.sect4.subcat = (uChar) is4[10]; - int nOffset = (is4[7] != GS4_ANALYSIS_CHEMICAL) ? 0 : 2; + int nOffset = 0; + if( is4[7] == GS4_ANALYSIS_CHEMICAL ) { + nOffset = 16 - 14; + } + else if( is4[7] == GS4_OPTICAL_PROPERTIES_AEROSOL ) { + nOffset = 38 - 14; + } + if (ns4 < 34 + nOffset) { + return -1; + } meta->pds2.sect4.genProcess = (uChar) is4[11 + nOffset]; /* Initialize variables prior to parsing the specific templates. */ meta->pds2.sect4.typeEnsemble = 0; meta->pds2.sect4.perturbNum = 0; meta->pds2.sect4.numberFcsts = 0; - meta->pds2.sect4.derivedFcst = 0; + meta->pds2.sect4.derivedFcst = (uChar)-1; meta->pds2.sect4.validTime = meta->pds2.refTime; if (meta->pds2.sect4.templat == GS4_SATELLITE) { @@ -1775,6 +1784,20 @@ static int ParseSect4 (sInt4 *is4, sInt4 ns4, grib_MetaData *meta) meta->pds2.sect4.derivedFcst = (uChar) is4[34]; meta->pds2.sect4.numberFcsts = (uChar) is4[35]; break; + case GS4_DERIVED_CLUSTER_RECTANGULAR_AREA: /* 4.3 */ + if (ns4 < 68) { + return -1; + } + meta->pds2.sect4.derivedFcst = (uChar) is4[34]; + meta->pds2.sect4.numberFcsts = (uChar) is4[35]; + break; + case GS4_DERIVED_CLUSTER_CIRCULAR_AREA: /* 4.4 */ + if (ns4 < 64) { + return -1; + } + meta->pds2.sect4.derivedFcst = (uChar) is4[34]; + meta->pds2.sect4.numberFcsts = (uChar) is4[35]; + break; case GS4_DERIVED_INTERVAL: /* 4.12 */ if (ns4 < 45) { return -1; @@ -1840,6 +1863,14 @@ static int ParseSect4 (sInt4 *is4, sInt4 ns4, grib_MetaData *meta) meta->pds2.sect4.numMissing = is4[44]; } break; + case GS4_DERIVED_INTERVAL_CLUSTER_RECTANGULAR_AREA: /* 4.13 */ + case GS4_DERIVED_INTERVAL_CLUSTER_CIRCULAR_AREA: /* 4.14 */ + if (ns4 < 36) { + return -1; + } + meta->pds2.sect4.derivedFcst = (uChar) is4[34]; + meta->pds2.sect4.numberFcsts = (uChar) is4[35]; + break; case GS4_STATISTIC: /* 4.8 */ if (ns4 < 43) { return -1; @@ -2051,6 +2082,9 @@ static int ParseSect4 (sInt4 *is4, sInt4 ns4, grib_MetaData *meta) case GS4_ANALYSIS_CHEMICAL: /* 4.40 */ // TODO break; + case GS4_OPTICAL_PROPERTIES_AEROSOL: /* 4.48 */ + // TODO + break; default: errSprintf ("Un-supported Template. %ld\n", is4[7]); return -4; @@ -2411,6 +2445,7 @@ int MetaParse (grib_MetaData *meta, sInt4 *is0, sInt4 ns0, meta->pds2.sect4.templat, meta->pds2.sect4.cat, meta->pds2.sect4.subcat, lenTime, timeRangeUnit, statProcessID, incrType, meta->pds2.sect4.genID, probType, lowerProb, upperProb, + meta->pds2.sect4.derivedFcst, &(meta->element), &(meta->comment), &(meta->unitName), &(meta->convert), meta->pds2.sect4.percentile, meta->pds2.sect4.genProcess, diff --git a/gdal/frmts/grib/gribcreatecopy.cpp b/gdal/frmts/grib/gribcreatecopy.cpp index ac7184b591ca..4f5a55551643 100644 --- a/gdal/frmts/grib/gribcreatecopy.cpp +++ b/gdal/frmts/grib/gribcreatecopy.cpp @@ -2108,18 +2108,19 @@ static float ComputeValOffset(int nTokens, char** papszTokens, float fValOffset = 0.0f; // Parameter category 0 = Temperature - bool bIsTemperature = false; if( nTokens >= 2 && atoi(papszTokens[0]) == 0 ) { - // Cf http://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_table4-2-0-0.shtml + // Cf https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_table4-2-0-0.shtml // PARAMETERS FOR DISCIPLINE 0 CATEGORY 0 int nParamNumber = atoi(papszTokens[1]); - if( nParamNumber >= 0 && nParamNumber <= 18 && + if( (nParamNumber >= 0 && nParamNumber <= 18 && nParamNumber != 8 && nParamNumber != 10 && nParamNumber != 11 && - nParamNumber != 16 ) + nParamNumber != 16) || + nParamNumber == 21 || + nParamNumber == 27 ) { - bIsTemperature = true; - if( pszInputUnit == nullptr || EQUAL(pszInputUnit, "C") ) + if( pszInputUnit == nullptr || EQUAL(pszInputUnit, "C") || + EQUAL(pszInputUnit, "[C]") ) { fValOffset = 273.15f; CPLDebug("GRIB", @@ -2127,20 +2128,9 @@ static float ComputeValOffset(int nTokens, char** papszTokens, "Celsius to Kelvin", fValOffset); } - else if( !EQUAL(pszInputUnit, "K") ) - { - CPLError(CE_Warning, CPLE_NotSupported, - "Unsupported INPUT_UNIT = %s", pszInputUnit); - } } } - if( !bIsTemperature && pszInputUnit != nullptr ) - { - CPLError(CE_Warning, CPLE_AppDefined, - "INPUT_UNIT ignored for that product template"); - } - return fValOffset; } @@ -2173,14 +2163,18 @@ static bool WriteSection4( VSILFILE* fp, pszPDSTemplateNumbers = GetBandOption( papszOptions, poSrcDS, nBand, "PDS_TEMPLATE_NUMBERS", nullptr); } + CPLString osInputUnit; const char* pszInputUnit = GetBandOption( papszOptions, nullptr, nBand, "INPUT_UNIT", nullptr); if( pszInputUnit == nullptr ) { const char* pszGribUnit = poSrcDS->GetRasterBand(nBand)->GetMetadataItem("GRIB_UNIT"); - if( pszGribUnit != nullptr && EQUAL(pszGribUnit, "[K]") ) - pszInputUnit = "K"; + if( pszGribUnit != nullptr ) + { + osInputUnit = pszGribUnit; + pszInputUnit = osInputUnit.c_str(); + } } WriteUInt16(fp, nPDTN); // PDTN if( nPDTN == 0 && pszPDSTemplateNumbers == nullptr && diff --git a/gdal/frmts/gtiff/libtiff/tif_ojpeg.c b/gdal/frmts/gtiff/libtiff/tif_ojpeg.c index b38645031378..10c42f62ef19 100644 --- a/gdal/frmts/gtiff/libtiff/tif_ojpeg.c +++ b/gdal/frmts/gtiff/libtiff/tif_ojpeg.c @@ -831,32 +831,6 @@ OJPEGDecodeRaw(TIFF* tif, uint8* buf, tmsize_t cc) { if (sp->subsampling_convert_state==0) { - const jpeg_decompress_struct* cinfo = &sp->libjpeg_jpeg_decompress_struct; - int width = 0; - int last_col_width = 0; - int jpeg_bytes; - int expected_bytes; - int i; - if (cinfo->MCUs_per_row == 0) - return 0; - for (i = 0; i < cinfo->comps_in_scan; ++i) - { - const jpeg_component_info* info = cinfo->cur_comp_info[i]; -#if JPEG_LIB_VERSION >= 70 - width += info->MCU_width * info->DCT_h_scaled_size; - last_col_width += info->last_col_width * info->DCT_h_scaled_size; -#else - width += info->MCU_width * info->DCT_scaled_size; - last_col_width += info->last_col_width * info->DCT_scaled_size; -#endif - } - jpeg_bytes = (cinfo->MCUs_per_row - 1) * width + last_col_width; - expected_bytes = sp->subsampling_convert_clinelenout * sp->subsampling_ver * sp->subsampling_hor; - if (jpeg_bytes != expected_bytes) - { - TIFFErrorExt(tif->tif_clientdata,module,"Inconsistent number of MCU in codestream"); - return(0); - } if (jpeg_read_raw_data_encap(sp,&(sp->libjpeg_jpeg_decompress_struct),sp->subsampling_convert_ycbcrimage,sp->subsampling_ver*8)==0) return(0); } @@ -1082,6 +1056,8 @@ OJPEGReadHeaderInfo(TIFF* tif) { sp->strile_width=sp->image_width; sp->strile_length=tif->tif_dir.td_rowsperstrip; + if( sp->strile_length == (uint32)-1 ) + sp->strile_length = sp->image_length; sp->strile_length_total=sp->image_length; } if (tif->tif_dir.td_samplesperpixel==1) @@ -1272,6 +1248,29 @@ OJPEGWriteHeaderInfo(TIFF* tif) } if (jpeg_start_decompress_encap(sp,&(sp->libjpeg_jpeg_decompress_struct))==0) return(0); + if(sp->libjpeg_jpeg_decompress_struct.image_width != sp->strile_width || + sp->libjpeg_jpeg_decompress_struct.image_height < sp->strile_length) { + TIFFErrorExt(tif->tif_clientdata,module, + "jpeg_start_decompress() returned image_width = %d " + "and image_height = %d, expected %d and %d", + sp->libjpeg_jpeg_decompress_struct.image_width, + sp->libjpeg_jpeg_decompress_struct.image_height, + sp->strile_width, + sp->strile_length); + return 0; + } + if(sp->libjpeg_jpeg_decompress_struct.max_h_samp_factor != sp->subsampling_hor || + sp->libjpeg_jpeg_decompress_struct.max_v_samp_factor != sp->subsampling_ver) { + TIFFErrorExt(tif->tif_clientdata,module, + "jpeg_start_decompress() returned max_h_samp_factor = %d " + "and max_v_samp_factor = %d, expected %d and %d", + sp->libjpeg_jpeg_decompress_struct.max_h_samp_factor, + sp->libjpeg_jpeg_decompress_struct.max_v_samp_factor, + sp->subsampling_hor, + sp->subsampling_ver); + return 0; + } + sp->writeheader_done=1; return(1); } diff --git a/gdal/frmts/hfa/hfacompress.cpp b/gdal/frmts/hfa/hfacompress.cpp index 7a870e377fdc..cfe73d12fbf8 100644 --- a/gdal/frmts/hfa/hfacompress.cpp +++ b/gdal/frmts/hfa/hfacompress.cpp @@ -182,14 +182,14 @@ void HFACompress::makeCount( GUInt32 count, GByte *pCounter, pCounter[0] = static_cast(count); *pnSizeCount = 1; } - else if( count < 0x8000 ) + else if( count < 0x4000 ) { pCounter[1] = count & 0xff; count /= 256; pCounter[0] = static_cast(count | 0x40); *pnSizeCount = 2; } - else if( count < 0x800000 ) + else if( count < 0x400000 ) { pCounter[2] = count & 0xff; count /= 256; diff --git a/gdal/frmts/iris/irisdataset.cpp b/gdal/frmts/iris/irisdataset.cpp index cea77c458ec9..c46b48072a7a 100644 --- a/gdal/frmts/iris/irisdataset.cpp +++ b/gdal/frmts/iris/irisdataset.cpp @@ -709,11 +709,18 @@ int IRISDataset::Identify( GDALOpenInfo * poOpenInfo ) const short nId1 = CPL_LSBSINT16PTR(poOpenInfo->pabyHeader); const short nId2 = CPL_LSBSINT16PTR(poOpenInfo->pabyHeader + 12); - unsigned short nType = CPL_LSBUINT16PTR(poOpenInfo->pabyHeader + 24); + unsigned short nProductCode = CPL_LSBUINT16PTR(poOpenInfo->pabyHeader + 12 + 12); + const short nYear = CPL_LSBSINT16PTR(poOpenInfo->pabyHeader+26+12); + const short nMonth = CPL_LSBSINT16PTR(poOpenInfo->pabyHeader+28+12); + const short nDay = CPL_LSBSINT16PTR(poOpenInfo->pabyHeader+30+12); // Check if the two headers are 27 (product hdr) & 26 (product - // configuration), and the product type is in the range 1 -> 34. - if( !(nId1 == 27 && nId2 == 26 && nType > 0 && nType < 35) ) + // configuration), and other metadata + if( !(nId1 == 27 && nId2 == 26 && + nProductCode > 0 && nProductCode < CPL_ARRAYSIZE(aszProductNames) && + nYear >= 1900 && nYear < 2100 && + nMonth >= 1 && nMonth <= 12 && + nDay >= 1 && nDay <= 31) ) return FALSE; return TRUE; diff --git a/gdal/frmts/jp2kak/jp2kakdataset.cpp b/gdal/frmts/jp2kak/jp2kakdataset.cpp index d9ab8cd540c5..0d6aa06cfe9d 100644 --- a/gdal/frmts/jp2kak/jp2kakdataset.cpp +++ b/gdal/frmts/jp2kak/jp2kakdataset.cpp @@ -2425,7 +2425,7 @@ JP2KAKCreateCopy( const char * pszFilename, GDALDataset *poSrcDS, dfXRes *= 100.0; dfYRes *= 100.0; - if( dfXRes != 0.0 && dfYRes != 0.0 ) + if( dfXRes != 0.0 && dfYRes != 0.0 && std::isfinite(dfXRes) && std::isfinite(dfYRes)) { if( fabs(dfXRes / dfYRes - 1.0) > 0.00001 ) res.init(static_cast(dfYRes / dfXRes)); diff --git a/gdal/frmts/kmlsuperoverlay/kmlsuperoverlaydataset.cpp b/gdal/frmts/kmlsuperoverlay/kmlsuperoverlaydataset.cpp index 31ef89984b03..0c8628010c2c 100644 --- a/gdal/frmts/kmlsuperoverlay/kmlsuperoverlaydataset.cpp +++ b/gdal/frmts/kmlsuperoverlay/kmlsuperoverlaydataset.cpp @@ -730,10 +730,11 @@ GDALDataset *KmlSuperOverlayCreateCopy( const char * pszFilename, int tilexsize; int tileysize; // Let the longer side determine the max zoom level and x/y tilesizes. + // tilesizes will be between 512 and 1024px if ( xsize >= ysize ) { double dtilexsize = xsize; - while (dtilexsize > 400) //calculate x tile size + while (dtilexsize > 1024) //calculate x tile size { dtilexsize = dtilexsize/2; maxzoom ++; @@ -744,7 +745,7 @@ GDALDataset *KmlSuperOverlayCreateCopy( const char * pszFilename, else { double dtileysize = ysize; - while (dtileysize > 400) //calculate y tile size + while (dtileysize > 1024) //calculate y tile size { dtileysize = dtileysize/2; maxzoom ++; diff --git a/gdal/frmts/pdf/gdal_pdf.h b/gdal/frmts/pdf/gdal_pdf.h index b184516ef455..0de6a6d08a05 100644 --- a/gdal/frmts/pdf/gdal_pdf.h +++ b/gdal/frmts/pdf/gdal_pdf.h @@ -185,6 +185,7 @@ class PDFDataset final: public GDALPamDataset friend class PDFRasterBand; friend class PDFImageRasterBand; + VSILFILE *m_fp = nullptr; PDFDataset* poParentDS; CPLString osFilename; diff --git a/gdal/frmts/pdf/pdfdataset.cpp b/gdal/frmts/pdf/pdfdataset.cpp index b2ddb72d7ce2..a6ec70e626a2 100644 --- a/gdal/frmts/pdf/pdfdataset.cpp +++ b/gdal/frmts/pdf/pdfdataset.cpp @@ -205,7 +205,11 @@ class GDALPDFOutputDev : public SplashOutputDev virtual void drawChar(GfxState *state, double x, double y, double dx, double dy, double originX, double originY, - CharCode code, int nBytes, Unicode *u, int uLen) override + CharCode code, int nBytes, +#if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 82 + const +#endif + Unicode *u, int uLen) override { if (bEnableText) SplashOutputDev::drawChar(state, x, y, dx, dy, @@ -265,7 +269,12 @@ class GDALPDFOutputDev : public SplashOutputDev virtual void drawImage(GfxState *state, Object *ref, Stream *str, int width, int height, GfxImageColorMap *colorMap, - GBool interpolate, int *maskColors, GBool inlineImg) override + GBool interpolate, +#if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 82 + const +#endif + int *maskColors, + GBool inlineImg) override { if (bEnableBitmap) SplashOutputDev::drawImage(state, ref, str, @@ -2440,6 +2449,10 @@ PDFDataset::~PDFDataset() for(int i=0;i= 1 || POPPLER_MINOR_VERSION >= 83 + globalParams.reset(new GlobalParams()); +#else globalParams = new GlobalParams(); +#endif + } globalParams->setPrintCommands(CPLTestBool( CPLGetConfigOption("GDAL_PDF_PRINT_COMMANDS", "FALSE"))); } - while( true ) - { - VSILFILE* fp = VSIFOpenL(pszFilename, "rb"); - if (fp == nullptr) - return nullptr; + VSILFILE* fp = VSIFOpenL(pszFilename, "rb"); + if (fp == nullptr) + return nullptr; - fp = (VSILFILE*)VSICreateBufferedReaderHandle((VSIVirtualHandle*)fp); + fp = (VSILFILE*)VSICreateBufferedReaderHandle((VSIVirtualHandle*)fp); + fpKeeper.reset(fp); + while( true ) + { + VSIFSeekL(fp, 0, SEEK_SET); if (pszUserPwd) poUserPwd = new GooString(pszUserPwd); #if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 58 - poDocPoppler = new PDFDoc(new VSIPDFFileStream(fp, pszFilename, std::move(oObj)), nullptr, poUserPwd); + auto poStream = new VSIPDFFileStream(fp, pszFilename, std::move(oObj)); #else oObj.getObj()->initNull(); - poDocPoppler = new PDFDoc(new VSIPDFFileStream(fp, pszFilename, oObj.getObj()), nullptr, poUserPwd); + auto poStream = new VSIPDFFileStream(fp, pszFilename, oObj.getObj()); #endif + poDocPoppler = new PDFDoc(poStream, nullptr, poUserPwd); delete poUserPwd; if ( !poDocPoppler->isOk() || poDocPoppler->getNumPages() == 0 ) @@ -4108,11 +4141,26 @@ GDALDataset *PDFDataset::Open( GDALOpenInfo * poOpenInfo ) } PDFFreeDoc(poDocPoppler); + return nullptr; + } + else if( poDocPoppler->isLinearized() && + !poStream->FoundLinearizedHint() ) + { + // This is a likely defect of poppler Linearization.cc file that + // recognizes a file as linearized if the /Linearized hint is missing, + // but the content of this dictionary are present. + // But given the hacks of PDFFreeDoc() and VSIPDFFileStream::FillBuffer() + // opening such a file will result in a null-ptr deref at closing if + // we try to access a page and build the page cache, so just exit now + CPLError(CE_Failure, CPLE_AppDefined, "Invalid PDF"); + PDFFreeDoc(poDocPoppler); return nullptr; } else + { break; + } } poCatalogPoppler = poDocPoppler->getCatalog(); @@ -4343,6 +4391,7 @@ GDALDataset *PDFDataset::Open( GDALOpenInfo * poOpenInfo ) } PDFDataset* poDS = new PDFDataset(); + poDS->m_fp = fpKeeper.release(); poDS->papszOpenOptions = CSLDuplicate(poOpenInfo->papszOpenOptions); poDS->bUseLib = bUseLib; poDS->osFilename = pszFilename; diff --git a/gdal/frmts/pdf/pdfio.cpp b/gdal/frmts/pdf/pdfio.cpp index 7850e0d292a4..094ad2e32016 100644 --- a/gdal/frmts/pdf/pdfio.cpp +++ b/gdal/frmts/pdf/pdfio.cpp @@ -107,8 +107,6 @@ VSIPDFFileStream::~VSIPDFFileStream() if (poParent == nullptr) { delete poFilename; - if (f) - VSIFCloseL(f); } } @@ -170,6 +168,9 @@ getStart_ret_type VSIPDFFileStream::getStart() /************************************************************************/ StreamKind VSIPDFFileStream::getKind() +#if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 83 + const +#endif { return strFile; } @@ -223,6 +224,7 @@ int VSIPDFFileStream::FillBuffer() if( memcmp(abyBuffer + i, "/Linearized ", strlen("/Linearized ")) == 0 ) { + bFoundLinearizedHint = true; memcpy(abyBuffer + i, "/XXXXXXXXXX ", strlen("/Linearized ")); break; } diff --git a/gdal/frmts/pdf/pdfio.h b/gdal/frmts/pdf/pdfio.h index ec13b8fe94c7..91562fdf455f 100644 --- a/gdal/frmts/pdf/pdfio.h +++ b/gdal/frmts/pdf/pdfio.h @@ -81,7 +81,12 @@ class VSIPDFFileStream final: public BaseStream virtual void setPos(setPos_offset_type pos, int dir = 0) override; virtual void moveStart(moveStart_delta_type delta) override; - virtual StreamKind getKind() override; + virtual StreamKind getKind() +#if POPPLER_MAJOR_VERSION >= 1 || POPPLER_MINOR_VERSION >= 83 + const +#endif + override; + virtual GooString *getFileName() override; virtual int getChar() override; @@ -92,6 +97,8 @@ class VSIPDFFileStream final: public BaseStream virtual void unfilteredReset () override; virtual void close() override; + bool FoundLinearizedHint() const { return bFoundLinearizedHint; } + private: virtual GBool hasGetChars() override; virtual int getChars(int nChars, Guchar *buffer) override; @@ -111,6 +118,8 @@ class VSIPDFFileStream final: public BaseStream int nPosInBuffer; int nBufferLength; + bool bFoundLinearizedHint = false; + int FillBuffer(); }; diff --git a/gdal/frmts/pds/nasakeywordhandler.cpp b/gdal/frmts/pds/nasakeywordhandler.cpp index 2777f3b90a27..864c6934b07a 100644 --- a/gdal/frmts/pds/nasakeywordhandler.cpp +++ b/gdal/frmts/pds/nasakeywordhandler.cpp @@ -197,6 +197,18 @@ int NASAKeywordHandler::ReadGroup( const char *pszPathPrefix, CPLJSONObject &oCu } } +/************************************************************************/ +/* StripQuotesIfNeeded() */ +/************************************************************************/ + +static CPLString StripQuotesIfNeeded(const CPLString& osWord, + bool bQuotesAlreadyRemoved) +{ + if( bQuotesAlreadyRemoved || osWord.size() < 2 || osWord[0] != '"' ) + return osWord; + return osWord.substr(1, osWord.size() - 2); +} + /************************************************************************/ /* ReadPair() */ /* */ @@ -266,7 +278,7 @@ int NASAKeywordHandler::ReadPair( CPLString &osName, CPLString &osValue, *pszHeaderNext == '{' || *pszHeaderNext == ')' || *pszHeaderNext == '}')) ) { - oArray.Add(osWord); + oArray.Add(StripQuotesIfNeeded(osWord, m_bStripSurroundingQuotes)); } } else if( CPLGetValueType(osWord) == CPL_VALUE_INTEGER ) @@ -279,6 +291,10 @@ int NASAKeywordHandler::ReadPair( CPLString &osName, CPLString &osValue, } osValue += osWord; + while ( isspace( static_cast( *pszHeaderNext ) ) ) + { + pszHeaderNext++; + } if( *pszHeaderNext == ')' ) { @@ -312,6 +328,15 @@ int NASAKeywordHandler::ReadPair( CPLString &osName, CPLString &osValue, { osValue += *pszHeaderNext; pszHeaderNext ++; + // Do not use SkipWhite() here to avoid being confuse by + // constructs like + // FOO = (#123456, + // #123456) + // where we could confuse the second line with a comment. + while ( isspace( static_cast( *pszHeaderNext ) ) ) + { + pszHeaderNext++; + } } SkipWhite(); @@ -339,7 +364,7 @@ int NASAKeywordHandler::ReadPair( CPLString &osName, CPLString &osValue, { if( bIsString ) { - oCur.Add( osName, osValue ); + oCur.Add( osName, StripQuotesIfNeeded(osValue, m_bStripSurroundingQuotes) ); } else if( CPLGetValueType(osValue) == CPL_VALUE_INTEGER ) { diff --git a/gdal/frmts/pds/pdsdataset.cpp b/gdal/frmts/pds/pdsdataset.cpp index 34410ff78aa9..8c9f38489c78 100644 --- a/gdal/frmts/pds/pdsdataset.cpp +++ b/gdal/frmts/pds/pdsdataset.cpp @@ -1049,7 +1049,9 @@ int PDSDataset::ParseImage( CPLString osPrefix, CPLString osFilenamePrefix ) int nLineOffset = nLinePrefixBytes; int nPixelOffset; - int nBandOffset; + vsi_l_offset nBandOffset; + + const auto CPLSM64 = [](int x) { return CPLSM(static_cast(x)); }; try { @@ -1063,18 +1065,19 @@ int PDSDataset::ParseImage( CPLString osPrefix, CPLString osFilenamePrefix ) { nPixelOffset = nItemSize; nLineOffset = (CPLSM(nLineOffset) + CPLSM(nPixelOffset) * CPLSM(nCols)).v(); - nBandOffset = (CPLSM(nLineOffset) * CPLSM(nRows) - + CPLSM(nSuffixLines) * (CPLSM(nCols) + CPLSM(nSuffixItems)) * CPLSM(nSuffixBytes)).v(); + nBandOffset = static_cast((CPLSM64(nLineOffset) * CPLSM64(nRows) + + CPLSM64(nSuffixLines) * (CPLSM64(nCols) + CPLSM64(nSuffixItems)) * CPLSM64(nSuffixBytes)).v()); } else /* assume BIL */ { nPixelOffset = nItemSize; nBandOffset = (CPLSM(nItemSize) * CPLSM(nCols)).v(); - nLineOffset = (CPLSM(nLineOffset) + CPLSM(nBandOffset) * CPLSM(l_nBands)).v(); + nLineOffset = (CPLSM(nLineOffset) + CPLSM(static_cast(nBandOffset)) * CPLSM(l_nBands)).v(); } } catch( const CPLSafeIntOverflow& ) { + CPLError(CE_Failure, CPLE_AppDefined, "Integer overflow"); return FALSE; } diff --git a/gdal/frmts/vrt/vrtdataset.cpp b/gdal/frmts/vrt/vrtdataset.cpp index 219978c5f9b8..e86178b766ba 100644 --- a/gdal/frmts/vrt/vrtdataset.cpp +++ b/gdal/frmts/vrt/vrtdataset.cpp @@ -1765,27 +1765,29 @@ void VRTDataset::BuildVirtualOverviews() int nOverviews = 0; GDALRasterBand* poFirstBand = nullptr; - for( int iBand = 0; iBand < nBands; iBand++ ) + + const auto CheckBandForOverview = + [&nOverviews, &poFirstBand, this](GDALRasterBand* poBand) { - if( !reinterpret_cast( - papoBands[iBand] )->IsSourcedRasterBand()) - return; + if( !cpl::down_cast(poBand)->IsSourcedRasterBand()) + return false; VRTSourcedRasterBand* poVRTBand - = reinterpret_cast( papoBands[iBand] ); + = cpl::down_cast(poBand); if( poVRTBand->nSources != 1 ) - return; + return false; if( !poVRTBand->papoSources[0]->IsSimpleSource() ) - return; + return false; VRTSimpleSource* poSource - = reinterpret_cast( poVRTBand->papoSources[0] ); + = cpl::down_cast( poVRTBand->papoSources[0] ); if( !EQUAL(poSource->GetType(), "SimpleSource") && !EQUAL(poSource->GetType(), "ComplexSource") ) - return; - GDALRasterBand* poSrcBand = poSource->GetBand(); + return false; + GDALRasterBand* poSrcBand = + poBand->GetBand() == 0 ? poSource->GetMaskBandMainBand() : poSource->GetBand(); if( poSrcBand == nullptr ) - return; + return false; // To prevent recursion m_apoOverviewsBak.push_back(nullptr); @@ -1793,14 +1795,29 @@ void VRTDataset::BuildVirtualOverviews() m_apoOverviewsBak.resize(0); if( nOvrCount == 0 ) - return; - if( iBand == 0 ) + return false; + if( poFirstBand == nullptr ) { + if( poSrcBand->GetXSize() == 0 || poSrcBand->GetYSize() == 0 ) + return false; poFirstBand = poSrcBand; nOverviews = nOvrCount; } else if( nOvrCount < nOverviews ) nOverviews = nOvrCount; + return true; + }; + + for( int iBand = 0; iBand < nBands; iBand++ ) + { + if( !CheckBandForOverview(papoBands[iBand]) ) + return; + } + + if( m_poMaskBand ) + { + if( !CheckBandForOverview(m_poMaskBand) ) + return; } for( int j = 0; j < nOverviews; j++) @@ -1816,19 +1833,19 @@ void VRTDataset::BuildVirtualOverviews() VRTDataset* poOvrVDS = new VRTDataset(nOvrXSize, nOvrYSize); m_apoOverviews.push_back(poOvrVDS); - for( int i = 0; i < nBands; i++ ) + const auto CreateOverviewBand = + [&poOvrVDS, nOvrXSize, nOvrYSize, dfXRatio, dfYRatio] + (GDALRasterBand* poBand) { VRTSourcedRasterBand* poVRTBand - = reinterpret_cast( - GetRasterBand(i+1) ); + = cpl::down_cast(poBand); VRTSourcedRasterBand* poOvrVRTBand = new VRTSourcedRasterBand( poOvrVDS, - poOvrVDS->GetRasterCount() + 1, + poBand->GetBand(), poVRTBand->GetRasterDataType(), nOvrXSize, nOvrYSize); - poOvrVDS->SetBand( poOvrVDS->GetRasterCount() + 1, poOvrVRTBand ); - VRTSimpleSource* poSrcSource = reinterpret_cast( + VRTSimpleSource* poSrcSource = cpl::down_cast( poVRTBand->papoSources[0] ); VRTSimpleSource* poNewSource = nullptr; if( EQUAL(poSrcSource->GetType(), "SimpleSource") ) @@ -1839,7 +1856,7 @@ void VRTDataset::BuildVirtualOverviews() else if( EQUAL(poSrcSource->GetType(), "ComplexSource") ) { poNewSource = new VRTComplexSource( - reinterpret_cast( poSrcSource ), + cpl::down_cast( poSrcSource ), dfXRatio, dfYRatio ); } else @@ -1848,10 +1865,28 @@ void VRTDataset::BuildVirtualOverviews() } if( poNewSource ) { - if( poNewSource->GetBand()->GetDataset() ) - poNewSource->GetBand()->GetDataset()->Reference(); + auto poNewSourceBand = poBand->GetBand() == 0 ? + poNewSource->GetMaskBandMainBand() : + poNewSource->GetBand(); + CPLAssert(poNewSourceBand); + auto poNewSourceBandDS = poNewSourceBand->GetDataset(); + if( poNewSourceBandDS ) + poNewSourceBandDS->Reference(); poOvrVRTBand->AddSource(poNewSource); } + + return poOvrVRTBand; + }; + + for( int i = 0; i < nBands; i++ ) + { + poOvrVDS->SetBand( poOvrVDS->GetRasterCount() + 1, + CreateOverviewBand(GetRasterBand(i+1)) ); + } + + if( m_poMaskBand ) + { + poOvrVDS->SetMaskBand( CreateOverviewBand(m_poMaskBand) ); } } } diff --git a/gdal/frmts/vrt/vrtdataset.h b/gdal/frmts/vrt/vrtdataset.h index c01ca321d138..b16deed718d5 100644 --- a/gdal/frmts/vrt/vrtdataset.h +++ b/gdal/frmts/vrt/vrtdataset.h @@ -924,6 +924,7 @@ class CPL_DLL VRTSimpleSource : public VRTSource virtual CPLErr FlushCache() override; GDALRasterBand* GetBand(); + GDALRasterBand* GetMaskBandMainBand() { return m_poMaskBandMainBand; } int IsSameExceptBandNumber( VRTSimpleSource* poOtherSource ); CPLErr DatasetRasterIO( GDALDataType eBandDataType, diff --git a/gdal/frmts/vrt/vrtrasterband.cpp b/gdal/frmts/vrt/vrtrasterband.cpp index 489a1ffba2d1..b8c9a5d7051c 100644 --- a/gdal/frmts/vrt/vrtrasterband.cpp +++ b/gdal/frmts/vrt/vrtrasterband.cpp @@ -1186,7 +1186,10 @@ GDALRasterBand *VRTRasterBand::GetOverview( int iOverview ) || iOverview >= static_cast( poVRTDS->m_apoOverviews.size() ) ) return nullptr; - return poVRTDS->m_apoOverviews[iOverview]->GetRasterBand(nBand ? nBand : 1); + auto poOvrBand = poVRTDS->m_apoOverviews[iOverview]->GetRasterBand(nBand ? nBand : 1); + if( m_bIsMaskBand ) + return poOvrBand->GetMaskBand(); + return poOvrBand; } return nullptr; diff --git a/gdal/frmts/vrt/vrtsources.cpp b/gdal/frmts/vrt/vrtsources.cpp index 5abfd9c8fe80..3722c10fe9bb 100644 --- a/gdal/frmts/vrt/vrtsources.cpp +++ b/gdal/frmts/vrt/vrtsources.cpp @@ -618,9 +618,7 @@ CPLErr VRTSimpleSource::XMLInit( CPLXMLNode *psSrc, const char *pszVRTPath, CPLXMLNode* psSrcProperties = CPLGetXMLNode(psSrc,"SourceProperties"); int nRasterXSize = 0; int nRasterYSize = 0; - // TODO(schwehr): What is the difference between 0 (GDT_Unknown) and -1? - // Does there need to be a GDT_Uninitialized? - GDALDataType eDataType = static_cast(-1); + GDALDataType eDataType = GDT_Unknown; int nBlockXSize = 0; int nBlockYSize = 0; if( psSrcProperties ) @@ -664,7 +662,7 @@ CPLErr VRTSimpleSource::XMLInit( CPLXMLNode *psSrc, const char *pszVRTPath, GDALDataset *poSrcDS = nullptr; if( nRasterXSize == 0 || nRasterYSize == 0 || - eDataType == static_cast(-1) || + eDataType == GDT_Unknown || nBlockXSize == 0 || nBlockYSize == 0 ) { /* ----------------------------------------------------------------- */ diff --git a/gdal/frmts/vrt/vrtwarped.cpp b/gdal/frmts/vrt/vrtwarped.cpp index fe756591b913..50df93b46ab7 100644 --- a/gdal/frmts/vrt/vrtwarped.cpp +++ b/gdal/frmts/vrt/vrtwarped.cpp @@ -463,6 +463,29 @@ CPLErr VRTWarpedDataset::SetMetadataItem( const char *pszName, const char *pszVa return VRTDataset::SetMetadataItem(pszName, pszValue, pszDomain); } +/************************************************************************/ +/* VRTWarpedAddOptions() */ +/************************************************************************/ + +static char** VRTWarpedAddOptions(char** papszWarpOptions) +{ + /* Avoid errors when adding an alpha band, but source dataset has */ + /* no alpha band (#4571), and generally don't leave our buffer uninitialized */ + if (CSLFetchNameValue( papszWarpOptions, "INIT_DEST" ) == nullptr) + papszWarpOptions = + CSLSetNameValue(papszWarpOptions, "INIT_DEST", "0"); + + /* For https://github.com/OSGeo/gdal/issues/1985 */ + if (CSLFetchNameValue( papszWarpOptions, + "ERROR_OUT_IF_EMPTY_SOURCE_WINDOW" ) == nullptr) + { + papszWarpOptions = + CSLSetNameValue(papszWarpOptions, + "ERROR_OUT_IF_EMPTY_SOURCE_WINDOW", "FALSE"); + } + return papszWarpOptions; +} + /************************************************************************/ /* Initialize() */ /* */ @@ -480,11 +503,7 @@ CPLErr VRTWarpedDataset::Initialize( void *psWO ) GDALWarpOptions* psWO_Dup = GDALCloneWarpOptions(static_cast( psWO ) ); - /* Avoid errors when adding an alpha band, but source dataset has */ - /* no alpha band (#4571), and generally don't leave our buffer uninitialized */ - if (CSLFetchNameValue( psWO_Dup->papszWarpOptions, "INIT_DEST" ) == nullptr) - psWO_Dup->papszWarpOptions = - CSLSetNameValue(psWO_Dup->papszWarpOptions, "INIT_DEST", "0"); + psWO_Dup->papszWarpOptions = VRTWarpedAddOptions(psWO_Dup->papszWarpOptions); CPLErr eErr = m_poWarper->Initialize( psWO_Dup ); @@ -1235,11 +1254,7 @@ CPLErr VRTWarpedDataset::XMLInit( CPLXMLNode *psTree, const char *pszVRTPathIn ) if( psWO == nullptr ) return CE_Failure; - /* Avoid errors when adding an alpha band, but source dataset has */ - /* no alpha band (#4571) */ - if( CSLFetchNameValue( psWO->papszWarpOptions, "INIT_DEST" ) == nullptr ) - psWO->papszWarpOptions = - CSLSetNameValue(psWO->papszWarpOptions, "INIT_DEST", "0"); + psWO->papszWarpOptions = VRTWarpedAddOptions(psWO->papszWarpOptions); eAccess = GA_Update; diff --git a/gdal/gcore/gdal_priv.h b/gdal/gcore/gdal_priv.h index c22a1b6bd4ba..7c67caa7f17d 100644 --- a/gdal/gcore/gdal_priv.h +++ b/gdal/gcore/gdal_priv.h @@ -998,7 +998,6 @@ class CPL_DLL GDALAbstractBandBlockCache void FreeDanglingBlocks(); void UnreferenceBlockBase(); - void WaitKeepAliveCounter(); public: explicit GDALAbstractBandBlockCache(GDALRasterBand* poBand); @@ -1006,6 +1005,7 @@ class CPL_DLL GDALAbstractBandBlockCache GDALRasterBlock* CreateBlock(int nXBlockOff, int nYBlockOff); void AddBlockToFreeList( GDALRasterBlock * ); + void WaitCompletionPendingTasks(); virtual bool Init() = 0; virtual bool IsInitOK() = 0; @@ -1035,6 +1035,7 @@ class CPL_DLL GDALRasterBand : public GDALMajorObject friend class GDALArrayBandBlockCache; friend class GDALHashSetBandBlockCache; friend class GDALRasterBlock; + friend class GDALDataset; CPLErr eFlushBlockErr = CE_None; GDALAbstractBandBlockCache* poBandBlockCache = nullptr; @@ -1069,7 +1070,6 @@ class CPL_DLL GDALRasterBand : public GDALMajorObject void InvalidateMaskBand(); - friend class GDALDataset; friend class GDALProxyRasterBand; friend class GDALDefaultOverviews; diff --git a/gdal/gcore/gdal_version.h.in b/gdal/gcore/gdal_version.h.in index f7c4ec52115d..6cbc68c87bf7 100644 --- a/gdal/gcore/gdal_version.h.in +++ b/gdal/gcore/gdal_version.h.in @@ -7,7 +7,7 @@ #ifndef GDAL_VERSION_MAJOR # define GDAL_VERSION_MAJOR 2 # define GDAL_VERSION_MINOR 4 -# define GDAL_VERSION_REV 3 +# define GDAL_VERSION_REV 4 # define GDAL_VERSION_BUILD 0 #endif @@ -24,9 +24,9 @@ #if !defined(DO_NOT_DEFINE_GDAL_RELEASE_DATE_AND_GDAL_RELEASE_NAME) #ifndef GDAL_RELEASE_DATE -# define GDAL_RELEASE_DATE 20191028 +# define GDAL_RELEASE_DATE 20200108 #endif #ifndef GDAL_RELEASE_NAME -# define GDAL_RELEASE_NAME "2.4.3" +# define GDAL_RELEASE_NAME "2.4.4" #endif #endif diff --git a/gdal/gcore/gdalabstractbandblockcache.cpp b/gdal/gcore/gdalabstractbandblockcache.cpp index e472494523d4..ad76bc462c71 100644 --- a/gdal/gcore/gdalabstractbandblockcache.cpp +++ b/gdal/gcore/gdalabstractbandblockcache.cpp @@ -113,7 +113,7 @@ void GDALAbstractBandBlockCache::AddBlockToFreeList( GDALRasterBlock *poBlock ) psListBlocksToFree = poBlock; } - // If no more blocks in transient state, then warn WaitKeepAliveCounter() + // If no more blocks in transient state, then warn WaitCompletionPendingTasks() CPLAcquireMutex(hCondMutex, 1000); if( CPLAtomicDec(&nKeepAliveCounter) == 0 ) { @@ -123,13 +123,13 @@ void GDALAbstractBandBlockCache::AddBlockToFreeList( GDALRasterBlock *poBlock ) } /************************************************************************/ -/* WaitKeepAliveCounter() */ +/* WaitCompletionPendingTasks() */ /************************************************************************/ -void GDALAbstractBandBlockCache::WaitKeepAliveCounter() +void GDALAbstractBandBlockCache::WaitCompletionPendingTasks() { #ifdef DEBUG_VERBOSE - CPLDebug("GDAL", "WaitKeepAliveCounter()"); + CPLDebug("GDAL", "WaitCompletionPendingTasks()"); #endif CPLAcquireMutex(hCondMutex, 1000); diff --git a/gdal/gcore/gdalarraybandblockcache.cpp b/gdal/gcore/gdalarraybandblockcache.cpp index 9d8aeebe6e2d..098c12871277 100644 --- a/gdal/gcore/gdalarraybandblockcache.cpp +++ b/gdal/gcore/gdalarraybandblockcache.cpp @@ -318,7 +318,7 @@ CPLErr GDALArrayBandBlockCache::FlushCache() } } - WaitKeepAliveCounter(); + WaitCompletionPendingTasks(); return( eGlobalErr ); } diff --git a/gdal/gcore/gdaldataset.cpp b/gdal/gcore/gdaldataset.cpp index 3be120b2bb95..0bf9e8ea4329 100644 --- a/gdal/gcore/gdaldataset.cpp +++ b/gdal/gcore/gdaldataset.cpp @@ -6767,8 +6767,20 @@ int GDALDataset::EnterReadWrite(GDALRWFlag eRWFlag) CPLGetPID(), GetDescription()); #endif CPLCreateOrAcquireMutex(&(m_poPrivate->hMutex), 1000.0); - // Not sure if we can have recursive calls, so... - m_poPrivate->oMapThreadToMutexTakenCount[CPLGetPID()]++; + + const int nCountMutex = m_poPrivate->oMapThreadToMutexTakenCount[CPLGetPID()]++; + if( nCountMutex == 0 && eRWFlag == GF_Read ) + { + CPLReleaseMutex(m_poPrivate->hMutex); + for( int i = 0; i < nBands; i++ ) + { + auto blockCache = papoBands[i]->poBandBlockCache; + if( blockCache ) + blockCache->WaitCompletionPendingTasks(); + } + CPLCreateOrAcquireMutex(&(m_poPrivate->hMutex), 1000.0); + } + return TRUE; } } diff --git a/gdal/gcore/gdalhashsetbandblockcache.cpp b/gdal/gcore/gdalhashsetbandblockcache.cpp index f1b827a158e6..b15d2922123d 100644 --- a/gdal/gcore/gdalhashsetbandblockcache.cpp +++ b/gdal/gcore/gdalhashsetbandblockcache.cpp @@ -181,7 +181,7 @@ CPLErr GDALHashSetBandBlockCache::FlushCache() } } - WaitKeepAliveCounter(); + WaitCompletionPendingTasks(); return( eGlobalErr ); } diff --git a/gdal/gcore/gdalrasterband.cpp b/gdal/gcore/gdalrasterband.cpp index ff0874bdf9b0..a81b4c1d7ea3 100644 --- a/gdal/gcore/gdalrasterband.cpp +++ b/gdal/gcore/gdalrasterband.cpp @@ -536,6 +536,7 @@ CPLErr GDALRasterBand::ReadBlock( int nXBlockOff, int nYBlockOff, /* -------------------------------------------------------------------- */ /* Invoke underlying implementation method. */ /* -------------------------------------------------------------------- */ + int bCallLeaveReadWrite = EnterReadWrite(GF_Read); CPLErr eErr = IReadBlock( nXBlockOff, nYBlockOff, pImage ); if( bCallLeaveReadWrite) LeaveReadWrite(); diff --git a/gdal/gcore/gdalrasterblock.cpp b/gdal/gcore/gdalrasterblock.cpp index d13a48e61df7..81d121a04435 100644 --- a/gdal/gcore/gdalrasterblock.cpp +++ b/gdal/gcore/gdalrasterblock.cpp @@ -452,17 +452,27 @@ int GDALRasterBlock::FlushCacheBlock( int bDirtyBlocksOnly ) if( poTarget == nullptr ) return FALSE; if( bSleepsForBockCacheDebug ) - CPLSleep(CPLAtof( + { + // coverity[tainted_data] + const double dfDelay = CPLAtof( CPLGetConfigOption( - "GDAL_RB_FLUSHBLOCK_SLEEP_AFTER_DROP_LOCK", "0"))); + "GDAL_RB_FLUSHBLOCK_SLEEP_AFTER_DROP_LOCK", "0")); + if( dfDelay > 0 ) + CPLSleep(dfDelay); + } poTarget->Detach_unlocked(); poTarget->GetBand()->UnreferenceBlock(poTarget); } if( bSleepsForBockCacheDebug ) - CPLSleep(CPLAtof( - CPLGetConfigOption("GDAL_RB_FLUSHBLOCK_SLEEP_AFTER_RB_LOCK", "0"))); + { + // coverity[tainted_data] + const double dfDelay = CPLAtof( + CPLGetConfigOption("GDAL_RB_FLUSHBLOCK_SLEEP_AFTER_RB_LOCK", "0")); + if( dfDelay > 0 ) + CPLSleep(dfDelay); + } if( poTarget->GetDirty() ) { @@ -945,6 +955,7 @@ CPLErr GDALRasterBlock::Internalize() /* -------------------------------------------------------------------- */ bool bFirstIter = true; bool bLoopAgain = false; + GDALDataset* poThisDS = poBand->GetDataset(); do { bLoopAgain = false; @@ -958,25 +969,74 @@ CPLErr GDALRasterBlock::Internalize() GDALRasterBlock *poTarget = poOldest; while( nCacheUsed > nCurCacheMax ) { + GDALRasterBlock* poDirtyBlockOtherDataset = nullptr; + // In this first pass, only discard dirty blocks of this + // dataset. We do this to decrease significantly the likelihood + // of the following weakness of the block cache design: + // 1. Thread 1 fills block B with ones + // 2. Thread 2 evicts this dirty block, while thread 1 almost + // at the same time (but slightly after) tries to reacquire + // this block. As it has been removed from the block cache + // array/set, thread 1 now tries to read block B from disk, + // so gets the old value. while( poTarget != nullptr ) { - if( !poTarget->GetDirty() || - nDisableDirtyBlockFlushCounter == 0 ) + if( !poTarget->GetDirty() ) { if( CPLAtomicCompareAndExchange( &(poTarget->nLockCount), 0, -1) ) break; } + else if (nDisableDirtyBlockFlushCounter == 0) + { + if( poTarget->poBand->GetDataset() == poThisDS ) + { + if( CPLAtomicCompareAndExchange( + &(poTarget->nLockCount), 0, -1) ) + break; + } + else if( poDirtyBlockOtherDataset == nullptr ) + { + poDirtyBlockOtherDataset = poTarget; + } + } poTarget = poTarget->poPrevious; } + if( poTarget == nullptr && poDirtyBlockOtherDataset ) + { + if( CPLAtomicCompareAndExchange( + &(poDirtyBlockOtherDataset->nLockCount), 0, -1) ) + { + CPLDebug("GDAL", "Evicting dirty block of another dataset"); + poTarget = poDirtyBlockOtherDataset; + } + else + { + poTarget = poOldest; + while( poTarget != nullptr ) + { + if( CPLAtomicCompareAndExchange( + &(poTarget->nLockCount), 0, -1) ) + { + CPLDebug("GDAL", "Evicting dirty block of another dataset"); + break; + } + } + } + } if( poTarget != nullptr ) { if( bSleepsForBockCacheDebug ) - CPLSleep(CPLAtof( + { + // coverity[tainted_data] + const double dfDelay = CPLAtof( CPLGetConfigOption( "GDAL_RB_INTERNALIZE_SLEEP_AFTER_DROP_LOCK", - "0"))); + "0")); + if( dfDelay > 0 ) + CPLSleep(dfDelay); + } GDALRasterBlock* _poPrevious = poTarget->poPrevious; @@ -1022,6 +1082,17 @@ CPLErr GDALRasterBlock::Internalize() if( poBlock->GetDirty() ) { + if( bSleepsForBockCacheDebug ) + { + // coverity[tainted_data] + const double dfDelay = CPLAtof( + CPLGetConfigOption( + "GDAL_RB_INTERNALIZE_SLEEP_AFTER_DETACH_BEFORE_WRITE", + "0")); + if( dfDelay > 0 ) + CPLSleep(dfDelay); + } + CPLErr eErr = poBlock->Write(); if( eErr != CE_None ) { @@ -1126,8 +1197,13 @@ int GDALRasterBlock::TakeLock() const int nLockVal = AddLock(); CPLAssert(nLockVal >= 0); if( bSleepsForBockCacheDebug ) - CPLSleep(CPLAtof( - CPLGetConfigOption("GDAL_RB_TRYGET_SLEEP_AFTER_TAKE_LOCK", "0"))); + { + // coverity[tainted_data] + const double dfDelay = CPLAtof( + CPLGetConfigOption("GDAL_RB_TRYGET_SLEEP_AFTER_TAKE_LOCK", "0")); + if( dfDelay > 0 ) + CPLSleep(dfDelay); + } if( nLockVal == 0 ) { // The block is being evicted by GDALRasterBlock::Internalize() diff --git a/gdal/gcore/mdreader/reader_pleiades.cpp b/gdal/gcore/mdreader/reader_pleiades.cpp index 514cc8d2ecd7..779ea6063f4b 100644 --- a/gdal/gcore/mdreader/reader_pleiades.cpp +++ b/gdal/gcore/mdreader/reader_pleiades.cpp @@ -84,7 +84,6 @@ GDALMDReaderPleiades::GDALMDReaderPleiades(const char *pszPath, if(!bHasRowColPart || sscanf (pszBaseName + nLastUnderline + 5U, "R%uC%u", &iRow, &iCol) != 2) { - CPLDebug( "MDReaderPleiades", "Not a Pleiades product" ); return; } diff --git a/gdal/gcore/rasterio.cpp b/gdal/gcore/rasterio.cpp index 0ae54cb61d1d..8d6aea70ace9 100644 --- a/gdal/gcore/rasterio.cpp +++ b/gdal/gcore/rasterio.cpp @@ -2899,6 +2899,7 @@ template<> void GDALUnrolledCopy( GByte* CPL_RESTRICT pDest, } #endif + const __m128i xmm_zero = _mm_setzero_si128(); const __m128i xmm_mask = _mm_set1_epi16(0xff); // If we were sure that there would always be 1 trailing byte, we could // check against nIters - 15 @@ -2910,8 +2911,8 @@ template<> void GDALUnrolledCopy( GByte* CPL_RESTRICT pDest, xmm0 = _mm_and_si128(xmm0, xmm_mask); xmm1 = _mm_and_si128(xmm1, xmm_mask); // Pack int16 to uint8 - xmm0 = _mm_packus_epi16(xmm0, xmm0); - xmm1 = _mm_packus_epi16(xmm1, xmm1); + xmm0 = _mm_packus_epi16(xmm0, xmm_zero); + xmm1 = _mm_packus_epi16(xmm1, xmm_zero); // Move 64 lower bits of xmm1 to 64 upper bits of xmm0 xmm1 = _mm_slli_si128(xmm1, 8); diff --git a/gdal/ogr/ogrcurve.cpp b/gdal/ogr/ogrcurve.cpp index 55e2a619a107..420d11708e7c 100644 --- a/gdal/ogr/ogrcurve.cpp +++ b/gdal/ogr/ogrcurve.cpp @@ -322,7 +322,7 @@ OGRBoolean OGRCurve::IsConvex() const OGRCompoundCurve* OGRCurve::CastToCompoundCurve( OGRCurve* poCurve ) { OGRCompoundCurve* poCC = new OGRCompoundCurve(); - if( poCurve->getGeometryType() == wkbLineString ) + if( wkbFlatten(poCurve->getGeometryType()) == wkbLineString ) poCurve = CastToLineString(poCurve); if( !poCurve->IsEmpty() && poCC->addCurveDirectly(poCurve) != OGRERR_NONE ) { diff --git a/gdal/ogr/ogrlinearring.cpp b/gdal/ogr/ogrlinearring.cpp index 0b10be6349ad..5e01c153a7ca 100644 --- a/gdal/ogr/ogrlinearring.cpp +++ b/gdal/ogr/ogrlinearring.cpp @@ -702,16 +702,16 @@ OGRBoolean OGRLinearRing::isPointOnRingBoundary( const OGRPoint* poPoint, } } - double prev_diff_x = getX(0) - dfTestX; - double prev_diff_y = getY(0) - dfTestY; + double prev_diff_x = dfTestX - getX(0); + double prev_diff_y = dfTestY - getY(0); for( int iPoint = 1; iPoint < iNumPoints; iPoint++ ) { - const double x1 = getX(iPoint) - dfTestX; - const double y1 = getY(iPoint) - dfTestY; + const double dx1 = dfTestX - getX(iPoint); + const double dy1 = dfTestY - getY(iPoint); - const double x2 = prev_diff_x; - const double y2 = prev_diff_y; + const double dx2 = prev_diff_x; + const double dy2 = prev_diff_y; // If the point is on the segment, return immediately. // FIXME? If the test point is not exactly identical to one of @@ -719,17 +719,29 @@ OGRBoolean OGRLinearRing::isPointOnRingBoundary( const OGRPoint* poPoint, // little chance that we get 0. So that should be tested against some // epsilon. - if( x1 * y2 - x2 * y1 == 0 ) + if( dx1 * dy2 - dx2 * dy1 == 0 ) { // If iPoint and iPointPrev are the same, go on. - if( !(x1 == x2 && y1 == y2) ) + if( !(dx1 == dx2 && dy1 == dy2) ) { - return 1; + const double dx_segment = getX(iPoint) - getX(iPoint-1); + const double dy_segment = getY(iPoint) - getY(iPoint-1); + const double crossproduct = + dx2 * dx_segment + dy2 * dy_segment; + if( crossproduct >= 0 ) + { + const double sq_length_seg = dx_segment * dx_segment + + dy_segment * dy_segment; + if( crossproduct <= sq_length_seg ) + { + return 1; + } + } } } - prev_diff_x = x1; - prev_diff_y = y1; + prev_diff_x = dx1; + prev_diff_y = dy1; } return 0; diff --git a/gdal/ogr/ogrsf_frmts/cad/libopencad/dwg/r2000.cpp b/gdal/ogr/ogrsf_frmts/cad/libopencad/dwg/r2000.cpp index 5517c3b58d4c..e5ceb2893388 100644 --- a/gdal/ogr/ogrsf_frmts/cad/libopencad/dwg/r2000.cpp +++ b/gdal/ogr/ogrsf_frmts/cad/libopencad/dwg/r2000.cpp @@ -53,10 +53,6 @@ template std::string to_string(T val) } #endif -#ifdef __APPLE__ - #include -#endif - #define UNKNOWN1 CADHeader::MAX_HEADER_CONSTANT + 1 #define UNKNOWN2 CADHeader::MAX_HEADER_CONSTANT + 2 #define UNKNOWN3 CADHeader::MAX_HEADER_CONSTANT + 3 diff --git a/gdal/ogr/ogrsf_frmts/cad/ogrcadlayer.cpp b/gdal/ogr/ogrsf_frmts/cad/ogrcadlayer.cpp index 8e6277957521..1ac79025233b 100644 --- a/gdal/ogr/ogrsf_frmts/cad/ogrcadlayer.cpp +++ b/gdal/ogr/ogrsf_frmts/cad/ogrcadlayer.cpp @@ -8,7 +8,7 @@ * The MIT License (MIT) * * Copyright (c) 2016 Alexandr Borzykh - * Copyright (c) 2016, NextGIS + * Copyright (c) 2016-2019, NextGIS * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -41,7 +41,7 @@ #define FIELD_NAME_TEXT "text" constexpr double DEG2RAD = M_PI / 180.0; -// UNUSED constexpr double RAD2DEG = 1.0 / DEG2RAD; +constexpr double RAD2DEG = 1.0 / DEG2RAD; OGRCADLayer::OGRCADLayer( CADLayer &poCADLayer_, OGRSpatialReference *poSR, int nEncoding) : @@ -360,8 +360,8 @@ OGRFeature *OGRCADLayer::GetFeature( GIntBig nFID ) OGRCircularString * poCircle = new OGRCircularString(); // Need at least 3 points in arc - double dfStartAngle = poCADArc->getStartingAngle() * DEG2RAD; - double dfEndAngle = poCADArc->getEndingAngle() * DEG2RAD; + double dfStartAngle = poCADArc->getStartingAngle() * RAD2DEG; + double dfEndAngle = poCADArc->getEndingAngle() * RAD2DEG; double dfMidAngle = (dfEndAngle + dfStartAngle) / 2; CADVector stCircleCenter = poCADArc->getPosition(); @@ -568,7 +568,7 @@ OGRFeature *OGRCADLayer::GetFeature( GIntBig nFID ) * Get arc's starting angle. */ double dfA = atan2( ( stOgrArcCenter.getY() - stCurrentVertex.getY() ), - ( stOgrArcCenter.getX() - stCurrentVertex.getX() ) ) * DEG2RAD; + ( stOgrArcCenter.getX() - stCurrentVertex.getX() ) ) * RAD2DEG; if( bClockwise && ( dfLineDir == 1.0 ) ) dfA += ( dfLineDir * 180.0 ); @@ -579,7 +579,7 @@ OGRFeature *OGRCADLayer::GetFeature( GIntBig nFID ) * Get arc's ending angle. */ dfA = atan2( ( stOgrArcCenter.getY() - stNextVertex.getY() ), - ( stOgrArcCenter.getX() - stNextVertex.getX() ) ) * DEG2RAD; + ( stOgrArcCenter.getX() - stNextVertex.getX() ) ) * RAD2DEG; if( bClockwise && ( dfLineDir == 1.0 ) ) dfA += ( dfLineDir * 180.0 ); @@ -707,16 +707,15 @@ OGRFeature *OGRCADLayer::GetFeature( GIntBig nFID ) // FIXME: Start/end angles should be swapped to work exactly as DXF driver. // is it correct? - double dfStartAngle = -1 * poCADEllipse->getEndingAngle() * DEG2RAD; - double dfEndAngle = -1 * poCADEllipse->getStartingAngle() * DEG2RAD; - double dfAxisRatio = poCADEllipse->getAxisRatio(); - - dfStartAngle = fmod(dfStartAngle, 360.0); - dfEndAngle = fmod(dfEndAngle, 360.0); + double dfStartAngle = poCADEllipse->getStartingAngle() * RAD2DEG; + double dfEndAngle = poCADEllipse->getEndingAngle() * RAD2DEG; if( dfStartAngle > dfEndAngle ) + { dfEndAngle += 360.0; + } + double dfAxisRatio = poCADEllipse->getAxisRatio(); - CADVector vectPosition = poCADEllipse->getPosition(); + CADVector stEllipseCenter = poCADEllipse->getPosition(); CADVector vectSMAxis = poCADEllipse->getSMAxis(); double dfPrimaryRadius, dfSecondaryRadius; double dfRotation; @@ -726,11 +725,52 @@ OGRFeature *OGRCADLayer::GetFeature( GIntBig nFID ) dfSecondaryRadius = dfAxisRatio * dfPrimaryRadius; - dfRotation = -1 * atan2( vectSMAxis.getY(), vectSMAxis.getX() ) * DEG2RAD; + dfRotation = -1 * atan2( vectSMAxis.getY(), vectSMAxis.getX() ) * RAD2DEG; + /* NOTE: alternative way: + OGRCircularString * poEllipse = new OGRCircularString(); + OGRPoint oEllipsePoint1; + oEllipsePoint1.setX( stEllipseCenter.getX() - dfPrimaryRadius * + cos( dfRotation ) ); + oEllipsePoint1.setY( stEllipseCenter.getY() + dfPrimaryRadius * + sin( dfRotation ) ); + oEllipsePoint1.setZ( stEllipseCenter.getZ() ); + poEllipse->addPoint( &oEllipsePoint1 ); + + OGRPoint oEllipsePoint2; + oEllipsePoint2.setX( stEllipseCenter.getX() + dfSecondaryRadius * + cos( dfRotation ) ); + oEllipsePoint2.setY( stEllipseCenter.getY() + dfSecondaryRadius * + sin( dfRotation ) ); + oEllipsePoint2.setZ( stEllipseCenter.getZ() ); + poEllipse->addPoint( &oEllipsePoint2 ); + + OGRPoint oEllipsePoint3; + oEllipsePoint3.setX( stEllipseCenter.getX() + dfPrimaryRadius * + cos( dfRotation ) ); + oEllipsePoint3.setY( stEllipseCenter.getY() - dfPrimaryRadius * + sin( dfRotation ) ); + oEllipsePoint3.setZ( stEllipseCenter.getZ() ); + poEllipse->addPoint( &oEllipsePoint3 ); + + OGRPoint oEllipsePoint4; + oEllipsePoint4.setX( stEllipseCenter.getX() - dfSecondaryRadius * + cos( dfRotation ) ); + oEllipsePoint4.setY( stEllipseCenter.getY() - dfSecondaryRadius * + sin( dfRotation ) ); + oEllipsePoint4.setZ( stEllipseCenter.getZ() ); + poEllipse->addPoint( &oEllipsePoint4 ); + + // Close the ellipse + poEllipse->addPoint( &oEllipsePoint1 ); + */ - OGRGeometry *poEllipse = - OGRGeometryFactory::approximateArcAngles( - vectPosition.getX(), vectPosition.getY(), vectPosition.getZ(), + CPLDebug("CAD", "Position: %f, %f, %f, radius %f/%f, start angle: %f, end angle: %f, rotation: %f", + stEllipseCenter.getX(), stEllipseCenter.getY(), stEllipseCenter.getZ(), + dfPrimaryRadius, dfSecondaryRadius, dfStartAngle, dfEndAngle, dfRotation + ); + OGRGeometry *poEllipse = OGRGeometryFactory::approximateArcAngles( + stEllipseCenter.getX(), stEllipseCenter.getY(), + stEllipseCenter.getZ(), dfPrimaryRadius, dfSecondaryRadius, dfRotation, dfStartAngle, dfEndAngle, 0.0 ); diff --git a/gdal/ogr/ogrsf_frmts/dxf/ogrdxflayer.cpp b/gdal/ogr/ogrsf_frmts/dxf/ogrdxflayer.cpp index 48117e4d785d..ef22eabfb70d 100644 --- a/gdal/ogr/ogrsf_frmts/dxf/ogrdxflayer.cpp +++ b/gdal/ogr/ogrsf_frmts/dxf/ogrdxflayer.cpp @@ -2096,8 +2096,16 @@ OGRDXFFeature *OGRDXFLayer::TranslateSPLINE() break; case 40: - adfKnots.push_back( CPLAtof(szLineBuf) ); - break; + { + double dfVal = CPLAtof(szLineBuf); + // Ad-hoc fix for https://github.com/OSGeo/gdal/issues/1969 + // where the first knot is at a very very close to zero negative + // value and following knots are at 0. + if( dfVal < 0 && dfVal > -1.0e-10 ) + dfVal = 0; + adfKnots.push_back(dfVal); + break; + } case 41: adfWeights.push_back( CPLAtof(szLineBuf) ); diff --git a/gdal/ogr/ogrsf_frmts/elastic/ogrelasticlayer.cpp b/gdal/ogr/ogrsf_frmts/elastic/ogrelasticlayer.cpp index 0beab83cc811..1fc67dd012b9 100644 --- a/gdal/ogr/ogrsf_frmts/elastic/ogrelasticlayer.cpp +++ b/gdal/ogr/ogrsf_frmts/elastic/ogrelasticlayer.cpp @@ -2653,6 +2653,24 @@ json_object* OGRElasticLayer::GetValue( int nFieldIdx, return poVal; } +/************************************************************************/ +/* OGRESGetFieldIndexFromSQL() */ +/************************************************************************/ + +static int OGRESGetFieldIndexFromSQL(const swq_expr_node* poNode) +{ + if( poNode->eNodeType == SNT_COLUMN ) + return poNode->field_index; + + if( poNode->eNodeType == SNT_OPERATION && + poNode->nOperation == SWQ_CAST && + poNode->nSubExprCount >= 1 && + poNode->papoSubExpr[0]->eNodeType == SNT_COLUMN ) + return poNode->papoSubExpr[0]->field_index; + + return -1; +} + /************************************************************************/ /* TranslateSQLToFilter() */ /************************************************************************/ @@ -2661,6 +2679,7 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) { if( poNode->eNodeType == SNT_OPERATION ) { + int nFieldIdx; if( poNode->nOperation == SWQ_AND && poNode->nSubExprCount == 2 ) { // For AND, we can deal with a failure in one of the branch @@ -2710,8 +2729,6 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) if( poNode->papoSubExpr[0]->eNodeType == SNT_OPERATION && poNode->papoSubExpr[0]->nOperation == SWQ_ISNULL && poNode->papoSubExpr[0]->nSubExprCount == 1 && - poNode->papoSubExpr[0]->papoSubExpr[0]->eNodeType == - SNT_COLUMN && poNode->papoSubExpr[0]->papoSubExpr[0]->field_index != 0 && poNode->papoSubExpr[0]->papoSubExpr[0]->field_index < m_poFeatureDefn->GetFieldCount() ) @@ -2746,15 +2763,13 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) } else if( poNode->nOperation == SWQ_ISNULL && poNode->nSubExprCount == 1 && - poNode->papoSubExpr[0]->eNodeType == SNT_COLUMN && - poNode->papoSubExpr[0]->field_index != 0 && - poNode->papoSubExpr[0]->field_index < - m_poFeatureDefn->GetFieldCount() ) + (nFieldIdx = OGRESGetFieldIndexFromSQL(poNode->papoSubExpr[0])) > 0 && + nFieldIdx < m_poFeatureDefn->GetFieldCount() ) { json_object* poRet = json_object_new_object(); json_object* poExists = json_object_new_object(); CPLString osFieldName(BuildPathFromArray( - m_aaosFieldPaths[ poNode->papoSubExpr[0]->field_index])); + m_aaosFieldPaths[nFieldIdx])); json_object_object_add(poExists, "field", json_object_new_string(osFieldName)); json_object* poBool = json_object_new_object(); @@ -2783,19 +2798,18 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) } } else if( poNode->nOperation == SWQ_EQ && poNode->nSubExprCount == 2 && - poNode->papoSubExpr[0]->eNodeType == SNT_COLUMN && poNode->papoSubExpr[1]->eNodeType == SNT_CONSTANT && - poNode->papoSubExpr[0]->field_index < - m_poFeatureDefn->GetFieldCount() ) + (nFieldIdx = OGRESGetFieldIndexFromSQL(poNode->papoSubExpr[0])) >= 0 && + nFieldIdx < m_poFeatureDefn->GetFieldCount() ) { - json_object* poVal = GetValue(poNode->papoSubExpr[0]->field_index, + json_object* poVal = GetValue(nFieldIdx, poNode->papoSubExpr[1]); if( poVal == nullptr ) { return nullptr; } json_object* poRet = json_object_new_object(); - if( poNode->papoSubExpr[0]->field_index == 0 ) + if( nFieldIdx == 0 ) { json_object* poIds = json_object_new_object(); json_object* poValues = json_object_new_array(); @@ -2807,13 +2821,13 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) { json_object* poTerm = json_object_new_object(); CPLString osPath(BuildPathFromArray( - m_aaosFieldPaths[ poNode->papoSubExpr[0]->field_index])); + m_aaosFieldPaths[ nFieldIdx])); bool bNotAnalyzed = true; if( poNode->papoSubExpr[1]->field_type == SWQ_STRING ) { const char* pszFieldName = m_poFeatureDefn->GetFieldDefn( - poNode->papoSubExpr[0]->field_index)->GetNameRef(); + nFieldIdx)->GetNameRef(); bNotAnalyzed = CSLFindString(m_papszNotAnalyzedFields, pszFieldName) >= 0; if( !bNotAnalyzed ) @@ -2850,14 +2864,13 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) else if( (poNode->nOperation == SWQ_LT || poNode->nOperation == SWQ_LE || poNode->nOperation == SWQ_GT || - poNode->nOperation == SWQ_GE) && poNode->nSubExprCount == 2 && - poNode->papoSubExpr[0]->eNodeType == SNT_COLUMN && + poNode->nOperation == SWQ_GE) && + poNode->nSubExprCount == 2 && poNode->papoSubExpr[1]->eNodeType == SNT_CONSTANT && - poNode->papoSubExpr[0]->field_index != 0 && - poNode->papoSubExpr[0]->field_index < - m_poFeatureDefn->GetFieldCount() ) + (nFieldIdx = OGRESGetFieldIndexFromSQL(poNode->papoSubExpr[0])) > 0 && + nFieldIdx < m_poFeatureDefn->GetFieldCount() ) { - json_object* poVal = GetValue(poNode->papoSubExpr[0]->field_index, + json_object* poVal = GetValue(nFieldIdx, poNode->papoSubExpr[1]); if( poVal == nullptr ) { @@ -2868,7 +2881,7 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) json_object_object_add(poRet, "range", poRange); json_object* poFieldConstraint = json_object_new_object(); CPLString osFieldName(BuildPathFromArray( - m_aaosFieldPaths[ poNode->papoSubExpr[0]->field_index])); + m_aaosFieldPaths[nFieldIdx])); json_object_object_add(poRange, osFieldName, poFieldConstraint); const char* pszOp = (poNode->nOperation == SWQ_LT) ? "lt" : (poNode->nOperation == SWQ_LE) ? "lte" : @@ -2879,20 +2892,18 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) } else if( poNode->nOperation == SWQ_BETWEEN && poNode->nSubExprCount == 3 && - poNode->papoSubExpr[0]->eNodeType == SNT_COLUMN && poNode->papoSubExpr[1]->eNodeType == SNT_CONSTANT && poNode->papoSubExpr[2]->eNodeType == SNT_CONSTANT && - poNode->papoSubExpr[0]->field_index != 0 && - poNode->papoSubExpr[0]->field_index < - m_poFeatureDefn->GetFieldCount() ) + (nFieldIdx = OGRESGetFieldIndexFromSQL(poNode->papoSubExpr[0])) > 0 && + nFieldIdx < m_poFeatureDefn->GetFieldCount() ) { - json_object* poVal1 = GetValue(poNode->papoSubExpr[0]->field_index, + json_object* poVal1 = GetValue(nFieldIdx, poNode->papoSubExpr[1]); if( poVal1 == nullptr ) { return nullptr; } - json_object* poVal2 = GetValue(poNode->papoSubExpr[0]->field_index, + json_object* poVal2 = GetValue(nFieldIdx, poNode->papoSubExpr[2]); if( poVal2 == nullptr ) { @@ -2905,7 +2916,7 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) json_object_object_add(poRet, "range", poRange); json_object* poFieldConstraint = json_object_new_object(); CPLString osFieldName(BuildPathFromArray( - m_aaosFieldPaths[ poNode->papoSubExpr[0]->field_index])); + m_aaosFieldPaths[nFieldIdx])); json_object_object_add(poRange, osFieldName, poFieldConstraint); json_object_object_add(poFieldConstraint, "gte", poVal1); json_object_object_add(poFieldConstraint, "lte", poVal2); @@ -2913,9 +2924,8 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) } else if( poNode->nOperation == SWQ_IN && poNode->nSubExprCount > 1 && - poNode->papoSubExpr[0]->eNodeType == SNT_COLUMN && - poNode->papoSubExpr[0]->field_index < - m_poFeatureDefn->GetFieldCount() ) + (nFieldIdx = OGRESGetFieldIndexFromSQL(poNode->papoSubExpr[0])) >= 0 && + nFieldIdx < m_poFeatureDefn->GetFieldCount() ) { bool bAllConstant = true; for( int i=1; i< poNode->nSubExprCount; i++ ) @@ -2929,7 +2939,7 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) if( bAllConstant ) { json_object* poRet = json_object_new_object(); - if( poNode->papoSubExpr[0]->field_index == 0 ) + if( nFieldIdx == 0 ) { json_object* poIds = json_object_new_object(); json_object* poValues = json_object_new_array(); @@ -2938,7 +2948,7 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) for( int i=1; i< poNode->nSubExprCount; i++ ) { json_object* poVal = GetValue( - poNode->papoSubExpr[0]->field_index, + nFieldIdx, poNode->papoSubExpr[i]); if( poVal == nullptr ) { @@ -2952,12 +2962,11 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) { bool bNotAnalyzed = true; CPLString osPath(BuildPathFromArray( - m_aaosFieldPaths[ poNode->papoSubExpr[0]->field_index])); + m_aaosFieldPaths[nFieldIdx])); if( poNode->papoSubExpr[1]->field_type == SWQ_STRING ) { const char* pszFieldName = - m_poFeatureDefn->GetFieldDefn( - poNode->papoSubExpr[0]->field_index)-> + m_poFeatureDefn->GetFieldDefn(nFieldIdx)-> GetNameRef(); bNotAnalyzed = CSLFindString(m_papszNotAnalyzedFields, pszFieldName) >= 0; @@ -2990,7 +2999,7 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) for( int i=1; i< poNode->nSubExprCount; i++ ) { json_object* poVal = GetValue( - poNode->papoSubExpr[0]->field_index, + nFieldIdx, poNode->papoSubExpr[i]); if( poVal == nullptr ) { @@ -3009,7 +3018,7 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) for( int i=1; i< poNode->nSubExprCount; i++ ) { json_object* poVal = GetValue( - poNode->papoSubExpr[0]->field_index, + nFieldIdx, poNode->papoSubExpr[i]); if( poVal == nullptr ) { @@ -3039,21 +3048,19 @@ json_object* OGRElasticLayer::TranslateSQLToFilter(swq_expr_node* poNode) } else if( poNode->nOperation == SWQ_LIKE && poNode->nSubExprCount >= 2 && - poNode->papoSubExpr[0]->eNodeType == SNT_COLUMN && - poNode->papoSubExpr[0]->field_index != 0 && - poNode->papoSubExpr[0]->field_index < - m_poFeatureDefn->GetFieldCount() ) + (nFieldIdx = OGRESGetFieldIndexFromSQL(poNode->papoSubExpr[0])) > 0 && + nFieldIdx < m_poFeatureDefn->GetFieldCount() ) { char chEscape = '\0'; if( poNode->nSubExprCount == 3 ) chEscape = poNode->papoSubExpr[2]->string_value[0]; const char* pszPattern = poNode->papoSubExpr[1]->string_value; const char* pszFieldName = m_poFeatureDefn->GetFieldDefn( - poNode->papoSubExpr[0]->field_index)->GetNameRef(); + nFieldIdx)->GetNameRef(); bool bNotAnalyzed = CSLFindString(m_papszNotAnalyzedFields, pszFieldName) >= 0; CPLString osPath(BuildPathFromArray( - m_aaosFieldPaths[ poNode->papoSubExpr[0]->field_index])); + m_aaosFieldPaths[nFieldIdx])); if( !bNotAnalyzed && CSLFindString(m_papszFieldsWithRawValue, pszFieldName) >= 0 ) { diff --git a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsondatasource.cpp b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsondatasource.cpp index ef70174c3ccf..319870258e75 100644 --- a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsondatasource.cpp +++ b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsondatasource.cpp @@ -798,7 +798,9 @@ void OGRGeoJSONDataSource::LoadLayers(GDALOpenInfo* poOpenInfo, if( !ReadFromFile( poOpenInfo, pszUnprefixed ) ) return; } - OGRErr err = reader.Parse( pszGeoData_ ); + OGRErr err = reader.Parse( pszGeoData_, + nSrcType == eGeoJSONSourceService && + !STARTS_WITH_CI(poOpenInfo->pszFilename, "TopoJSON:") ); if( OGRERR_NONE == err ) { reader.ReadLayers( this ); diff --git a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonreader.h b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonreader.h index d529ee441762..0001150cffc8 100644 --- a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonreader.h +++ b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonreader.h @@ -309,7 +309,7 @@ class OGRTopoJSONReader OGRTopoJSONReader(); ~OGRTopoJSONReader(); - OGRErr Parse( const char* pszText ); + OGRErr Parse( const char* pszText, bool bLooseIdentification ); void ReadLayers( OGRGeoJSONDataSource* poDS ); private: diff --git a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonseqdriver.cpp b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonseqdriver.cpp index 159b2cfe1b35..239aed62eb6e 100644 --- a/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonseqdriver.cpp +++ b/gdal/ogr/ogrsf_frmts/geojson/ogrgeojsonseqdriver.cpp @@ -95,8 +95,7 @@ class OGRGeoJSONSeqLayer final: public OGRLayer GIntBig m_nTotalFeatures = 0; GIntBig m_nNextFID = 0; - void Init(); - json_object* GetNextObject(); + json_object* GetNextObject(bool bLooseIdentification); public: OGRGeoJSONSeqLayer(OGRGeoJSONSeqDataSource* poDS, @@ -104,6 +103,8 @@ class OGRGeoJSONSeqLayer final: public OGRLayer VSILFILE* fp); ~OGRGeoJSONSeqLayer(); + bool Init(bool bLooseIdentification); + void ResetReading() override; OGRFeature* GetNextFeature() override; OGRFeatureDefn* GetLayerDefn() override { return m_poFeatureDefn; } @@ -255,8 +256,6 @@ OGRGeoJSONSeqLayer::OGRGeoJSONSeqLayer(OGRGeoJSONSeqDataSource* poDS, m_poFeatureDefn->Reference(); m_poFeatureDefn->GetGeomFieldDefn(0)->SetSpatialRef( OGRSpatialReference::GetWGS84SRS()); - - Init(); } /************************************************************************/ @@ -273,7 +272,7 @@ OGRGeoJSONSeqLayer::~OGRGeoJSONSeqLayer() /* Init() */ /************************************************************************/ -void OGRGeoJSONSeqLayer::Init() +bool OGRGeoJSONSeqLayer::Init(bool bLooseIdentification) { if( STARTS_WITH(m_poDS->GetDescription(), "/vsimem/") || !STARTS_WITH(m_poDS->GetDescription(), "/vsi") ) @@ -286,7 +285,7 @@ void OGRGeoJSONSeqLayer::Init() while( true ) { - auto poObject = GetNextObject(); + auto poObject = GetNextObject(bLooseIdentification); if( !poObject ) break; if( OGRGeoJSONGetType(poObject) == GeoJSONObject::eFeature ) @@ -302,6 +301,8 @@ void OGRGeoJSONSeqLayer::Init() m_nFileSize = 0; m_nIter = 0; m_oReader.FinalizeLayerDefn( this, m_osFIDColumn ); + + return m_nTotalFeatures > 0; } /************************************************************************/ @@ -314,10 +315,13 @@ void OGRGeoJSONSeqLayer::ResetReading() // Undocumented: for testing purposes only const size_t nBufferSize = static_cast(std::max(1, atoi(CPLGetConfigOption("OGR_GEOJSONSEQ_CHUNK_SIZE", "40960")))); - m_osBuffer.resize(nBufferSize); + const size_t nBufferSizeValidated = + nBufferSize > static_cast(100 * 1000 * 1000) ? + static_cast(100 * 1000 * 1000) : nBufferSize; + m_osBuffer.resize(nBufferSizeValidated); m_osFeatureBuffer.clear(); - m_nPosInBuffer = nBufferSize; - m_nBufferValidSize = nBufferSize; + m_nPosInBuffer = nBufferSizeValidated; + m_nBufferValidSize = nBufferSizeValidated; m_nNextFID = 0; } @@ -325,7 +329,7 @@ void OGRGeoJSONSeqLayer::ResetReading() /* GetNextObject() */ /************************************************************************/ -json_object* OGRGeoJSONSeqLayer::GetNextObject() +json_object* OGRGeoJSONSeqLayer::GetNextObject(bool bLooseIdentification) { m_osFeatureBuffer.clear(); while( true ) @@ -390,6 +394,12 @@ json_object* OGRGeoJSONSeqLayer::GetNextObject() } } + while( !m_osFeatureBuffer.empty() && + (m_osFeatureBuffer.back() == '\r' || + m_osFeatureBuffer.back() == '\n') ) + { + m_osFeatureBuffer.resize(m_osFeatureBuffer.size()-1); + } if( !m_osFeatureBuffer.empty() ) { json_object* poObject = nullptr; @@ -400,6 +410,10 @@ json_object* OGRGeoJSONSeqLayer::GetNextObject() return poObject; } json_object_put(poObject); + if( bLooseIdentification ) + { + return nullptr; + } } } } @@ -412,7 +426,7 @@ OGRFeature* OGRGeoJSONSeqLayer::GetNextFeature() { while( true ) { - auto poObject = GetNextObject(); + auto poObject = GetNextObject(false); if( !poObject ) return nullptr; OGRFeature* poFeature; @@ -712,7 +726,26 @@ bool OGRGeoJSONSeqDataSource::Open( GDALOpenInfo* poOpenInfo, return false; } SetDescription( poOpenInfo->pszFilename ); - m_poLayer.reset(new OGRGeoJSONSeqLayer(this, osLayerName.c_str(), fp)); + auto poLayer = new OGRGeoJSONSeqLayer(this, osLayerName.c_str(), fp); + const bool bLooseIdentification = + nSrcType == eGeoJSONSourceService && + !STARTS_WITH_CI(poOpenInfo->pszFilename, "GeoJSONSeq:"); + if( bLooseIdentification ) + { + CPLPushErrorHandler(CPLQuietErrorHandler); + } + auto ret = poLayer->Init(bLooseIdentification); + if( bLooseIdentification ) + { + CPLPopErrorHandler(); + CPLErrorReset(); + } + if( !ret ) + { + delete poLayer; + return false; + } + m_poLayer.reset(poLayer); return true; } diff --git a/gdal/ogr/ogrsf_frmts/geojson/ogrtopojsonreader.cpp b/gdal/ogr/ogrsf_frmts/geojson/ogrtopojsonreader.cpp index 955f31f8b98d..270bea9ec427 100644 --- a/gdal/ogr/ogrsf_frmts/geojson/ogrtopojsonreader.cpp +++ b/gdal/ogr/ogrsf_frmts/geojson/ogrtopojsonreader.cpp @@ -58,10 +58,20 @@ OGRTopoJSONReader::~OGRTopoJSONReader() /* Parse() */ /************************************************************************/ -OGRErr OGRTopoJSONReader::Parse( const char* pszText ) +OGRErr OGRTopoJSONReader::Parse( const char* pszText, bool bLooseIdentification ) { json_object *jsobj = nullptr; - if( nullptr != pszText && !OGRJSonParse(pszText, &jsobj, true) ) + if( bLooseIdentification ) + { + CPLPushErrorHandler(CPLQuietErrorHandler); + } + const bool bOK = nullptr != pszText && OGRJSonParse(pszText, &jsobj, true); + if( bLooseIdentification ) + { + CPLPopErrorHandler(); + CPLErrorReset(); + } + if( !bOK ) { return OGRERR_CORRUPT_DATA; } diff --git a/gdal/ogr/ogrsf_frmts/gft/drv_gft.html b/gdal/ogr/ogrsf_frmts/gft/drv_gft.html deleted file mode 100644 index 6addd06285ff..000000000000 --- a/gdal/ogr/ogrsf_frmts/gft/drv_gft.html +++ /dev/null @@ -1,192 +0,0 @@ - - -GFT - Google Fusion Tables - - - - -

    GFT - Google Fusion Tables

    - -(GDAL/OGR >= 1.9.0)

    - -This driver can connect to the Google Fusion Tables service. GDAL/OGR must be built with Curl support in order to the -GFT driver to be compiled.

    - -The driver supports read and write operations.

    - -

    Dataset name syntax

    - -The minimal syntax to open a GFT datasource is :
    GFT:

    - -Additional optional parameters can be specified after the ':' sign such as :

    - -

      -
    • tables=table_id1[,table_id2]*: A list of table IDs. This is necessary when you need to access to public tables for example. -If you want the table ID of a public table, or any other table that is not owned by the authenticated user, you have to visit the table -in the Google Fusion Tables website and note the number at the end of the URL. -
    • protocol=https: To use HTTPS protocol for all operations. By default, HTTP is used, except for the authentication operation -where HTTPS is always used. -
    • auth=auth_key: An authentication key as described below. -
    • access=access_token: An access token as described below. -
    • refresh=refresh_token: A refresh token as described below. -
    - -If several parameters are specified, they must be separated by a space. - -

    Authentication

    - -Most operations, in particular write operations, require a valid Google -account to provide authentication information to the driver. The only -exception is read-only access to public tables.

    - -In order to create an authorization key, it is necessary to - -login and authorize access to fusion tables for a Google (i.e. GMail) -account. The resulting authorization key can be turned into a refresh -token for use OGR using the gdal/swig/python/scripts/gdal_auth.py script -distributed with GDAL (available in GDAL/OGR >= 1.10.0). Note that auth -tokens can only be used once, while the resulting refresh token lasts -indefinitely.

    - -

    -  gdal_auth.py auth2refresh auth_token
    -
    - -This refresh token can then be either set as a configuration option -(GFT_REFRESH_TOKEN) or included in the connection string -(i.e. GFT:refresh=refresh_token).

    - -Generally OAuth2 credentials can be provided via these mechanisms:

    - -

      -
    • Specifying an access token via the GFT_ACCESS_TOKEN -configuration/environment variable.

      -

    • Specifying an access token via the access= -clause in the GFT: connection string. -
    • Specifying a refresh token via the GFT_REFRESH_TOKEN -configuration/environment variable.

      -

    • Specifying an refresh token via the refresh= -clause in the GFT: connection string. -
    • Specifying a auth key via the GFT_AUTH -configuration/environment variable.

      -

    • Specifying an auth key via the auth= -clause in the GFT: connection string. -
    - -

    Geometry

    - -Geometries in GFT tables must be expressed in the geodetic WGS84 SRS. GFT allows them to be encoded in different forms : -
      -
    • A single column with a "lat lon" or "lat,lon" string, where lat et lon are expressed in decimal degrees.
    • -
    • A single column with a KML string that is the representation of a Point, a LineString or a Polygon.
    • -
    • Two columns, one with the latitude and the other one with the longitude, both values expressed in decimal degrees.
    • -
    • A single column with an address known by the geocoding service of Google Maps.
    • -
    - -Only the first 3 types are supported by OGR, not the last one.

    - -Fusion tables can have multiple geometry columns per table. By default, OGR -will use the first geometry column it finds. It is possible to select another -column as the geometry column by specifying table_name(geometry_column_name) -as the layer name passed to GetLayerByName().

    - -

    Filtering

    - -The driver will forward any spatial filter set with SetSpatialFilter() to the server. It also makes the same for attribute -filters set with SetAttributeFilter().

    - -

    Paging

    - -Features are retrieved from the server by chunks of 500 by default. This number can be altered with the GFT_PAGE_SIZE -configuration option.

    - -

    Write support

    - -Table creation and deletion is possible. Note that fields can only be added to a table in which there are no features created yet.

    - -Write support is only enabled when the datasource is opened in update mode.

    - -The mapping between the operations of the GFT service and the OGR concepts is the following : -

      -
    • OGRFeature::CreateFeature() <==> INSERT operation
    • -
    • OGRFeature::SetFeature() <==> UPDATE operation
    • -
    • OGRFeature::DeleteFeature() <==> DELETE operation
    • -
    • OGRDataSource::CreateLayer() <==> CREATE TABLE operation
    • -
    • OGRDataSource::DeleteLayer() <==> DROP TABLE operation
    • -
    - -When inserting a new feature with CreateFeature(), and if the command is successful, OGR will fetch the -returned rowid and use it as the OGR FID. OGR will also automatically reproject its geometry into the -geodetic WGS84 SRS if needed (provided that the original SRS is attached to the geometry).

    - -

    Write support and OGR transactions

    - -The above operations are by default issued to the server synchronously with the OGR API call. This however -can cause performance penalties when issuing a lot of commands due to many client/server exchanges.

    - -It is possible to surround the CreateFeature() operation between -OGRLayer::StartTransaction() and OGRLayer::CommitTransaction(). The -operations will be stored into memory and only executed at the time -CommitTransaction() is called. Note that the GFT service only supports -up to 500 INSERTs and up to 1MB of content per transaction.

    - -Note : only CreateFeature() makes use of OGR transaction mechanism. SetFeature() and DeleteFeature() -will still be issued immediately.

    - -

    SQL

    - -SQL commands provided to the OGRDataSource::ExecuteSQL() call are executed on the server side, unless the OGRSQL -dialect is specified. The subset of SQL supported by the GFT service is described in the links at the end of this page.

    - -The SQL supported by the server understands only native table id, and -not the table names returned by OGR. For convenience, OGR will -"patch" your SQL command to replace the table name by the table id -however.

    - -

    Examples

    - -
  • -Listing the tables and views owned by the authenticated user: -
    -ogrinfo -ro "GFT:email=john.doe@example.com password=secret_password"
    -
    -

    - -

  • -Creating and populating a table from a shapefile: -
    -ogr2ogr -f GFT "GFT:email=john.doe@example.com password=secret_password" shapefile.shp
    -
    -

    - -

  • -Displaying the content of a public table with a spatial and attribute filters: -
    -ogrinfo -ro "GFT:tables=224453" -al -spat 67 31.5 67.5 32 -where "'Attack on' = 'ENEMY'"
    -
    -

    - -

  • -Getting the auth key: -
    -ogrinfo --config CPL_DEBUG ON "GFT:email=john.doe@example.com password=secret_password"
    -
    - -returns: -
    -HTTP: Fetch(https://www.google.com/accounts/ClientLogin)
    -HTTP: These HTTP headers were set: Content-Type: application/x-www-form-urlencoded
    -GFT: Auth key : A_HUGE_STRING_WITH_ALPHANUMERIC_AND_SPECIAL_CHARACTERS
    -
    - -Now, you can set the GFT_AUTH environment variable to that value and simply use "GFT:" as the DSN. - -

    See Also

    - - - - - diff --git a/gdal/ogr/ogrsf_frmts/ogr_formats.html b/gdal/ogr/ogrsf_frmts/ogr_formats.html index 7f4230874875..922bf1ce22ac 100644 --- a/gdal/ogr/ogrsf_frmts/ogr_formats.html +++ b/gdal/ogr/ogrsf_frmts/ogr_formats.html @@ -249,13 +249,6 @@

    OGR Vector Formats

    Yes (read support needs libexpat) - Google Fusion Tables - GFT - Yes - Yes - No, needs libcurl - - GML GML Yes diff --git a/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitelayer.cpp b/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitelayer.cpp index 68564e65f341..daaedbe3e0de 100644 --- a/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitelayer.cpp +++ b/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitelayer.cpp @@ -138,7 +138,7 @@ bool OGRGetDateTimeFieldType( const char* pszValue, OGRFieldType* pFieldType ) { bool bSuccess = FALSE; - size_t nValueLength = strnlen( pszValue, 16 ); + size_t nValueLength = CPLStrnlen( pszValue, 16 ); if( nValueLength >= 5 ) { diff --git a/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitevirtualogr.cpp b/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitevirtualogr.cpp index f333877a06d0..96b691ab529a 100644 --- a/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitevirtualogr.cpp +++ b/gdal/ogr/ogrsf_frmts/sqlite/ogrsqlitevirtualogr.cpp @@ -1129,12 +1129,10 @@ int OGR2SQLITE_Filter(sqlite3_vtab_cursor* pCursor, } if( pMyCursor->poLayer->TestCapability(OLCFastFeatureCount) ) - { pMyCursor->nFeatureCount = pMyCursor->poLayer->GetFeatureCount(); - pMyCursor->poLayer->ResetReading(); - } else pMyCursor->nFeatureCount = -1; + pMyCursor->poLayer->ResetReading(); if( pMyCursor->nFeatureCount < 0 ) { diff --git a/gdal/ogr/ogrsf_frmts/wfs/ogrwfsdatasource.cpp b/gdal/ogr/ogrsf_frmts/wfs/ogrwfsdatasource.cpp index 46bcb7e5315b..1c8d13b2a54e 100644 --- a/gdal/ogr/ogrsf_frmts/wfs/ogrwfsdatasource.cpp +++ b/gdal/ogr/ogrsf_frmts/wfs/ogrwfsdatasource.cpp @@ -1358,7 +1358,11 @@ int OGRWFSDataSource::Open( const char * pszFilename, int bUpdateIn, pszDefaultSRS = osSRSName.c_str(); } - if (pszDefaultSRS) + // EPSG:404000 is a GeoServer joke to indicate a unknown SRS + // https://osgeo-org.atlassian.net/browse/GEOS-8993 + if (pszDefaultSRS && + !EQUAL(pszDefaultSRS, "EPSG:404000") && + !EQUAL(pszDefaultSRS, "urn:ogc:def:crs:EPSG::404000")) { OGRSpatialReference oSRS; if (oSRS.SetFromUserInput(pszDefaultSRS) == OGRERR_NONE) diff --git a/gdal/ogr/ogrsf_frmts/xlsx/ogr_xlsx.h b/gdal/ogr/ogrsf_frmts/xlsx/ogr_xlsx.h index 8972804c4e5c..36b44d4f5b27 100644 --- a/gdal/ogr/ogrsf_frmts/xlsx/ogr_xlsx.h +++ b/gdal/ogr/ogrsf_frmts/xlsx/ogr_xlsx.h @@ -38,6 +38,7 @@ #include #include #include +#include namespace OGRXLSX { @@ -49,12 +50,15 @@ class OGRXLSXDataSource; class OGRXLSXLayer final: public OGRMemLayer { + friend class OGRXLSXDataSource; + bool bInit; OGRXLSXDataSource* poDS; CPLString osFilename; void Init(); bool bUpdated; bool bHasHeaderLine; + std::set oSetFieldsOfUnknownType{}; public: OGRXLSXLayer( OGRXLSXDataSource* poDSIn, diff --git a/gdal/ogr/ogrsf_frmts/xlsx/ogrxlsxdatasource.cpp b/gdal/ogr/ogrsf_frmts/xlsx/ogrxlsxdatasource.cpp index f99fb9f44d17..f478b4c477ea 100644 --- a/gdal/ogr/ogrsf_frmts/xlsx/ogrxlsxdatasource.cpp +++ b/gdal/ogr/ogrsf_frmts/xlsx/ogrxlsxdatasource.cpp @@ -732,26 +732,6 @@ void OGRXLSXDataSource::endElementTable(CPL_UNUSED const char *pszNameIn) if (poCurLayer) { - /* Ensure that any fields still with an unknown type are set to String. - * This will only be the case if the field has no values */ - - for( size_t i = 0; i < apoFirstLineValues.size(); i++ ) - { - OGRFieldType eFieldType = - poCurLayer->GetLayerDefn()->GetFieldDefn(static_cast(i))->GetType(); - - if (eFieldType == OGRUnknownType) - { - OGRFieldDefn oNewFieldDefn( - poCurLayer->GetLayerDefn()->GetFieldDefn(static_cast(i))); - - oNewFieldDefn.SetType(OFTString); - poCurLayer->AlterFieldDefn(static_cast(i), &oNewFieldDefn, - ALTER_TYPE_FLAG); - - } - } - ((OGRMemLayer*)poCurLayer)->SetUpdatable(CPL_TO_BOOL(bUpdatable)); ((OGRMemLayer*)poCurLayer)->SetAdvertizeUTF8(true); ((OGRXLSXLayer*)poCurLayer)->SetUpdated(false); @@ -875,16 +855,23 @@ void OGRXLSXDataSource::endElementRow(CPL_UNUSED const char *pszNameIn) const char* pszFieldName = apoFirstLineValues[i].c_str(); if (pszFieldName[0] == '\0') pszFieldName = CPLSPrintf("Field%d", (int)i + 1); - OGRFieldType eType = OGRUnknownType; + bool bUnknownType = true; + OGRFieldType eType = OFTString; OGRFieldSubType eSubType = OFSTNone; if (i < apoCurLineValues.size() && !apoCurLineValues[i].empty()) { eType = GetOGRFieldType(apoCurLineValues[i].c_str(), apoCurLineTypes[i].c_str(), eSubType); + bUnknownType = false; } OGRFieldDefn oFieldDefn(pszFieldName, eType); oFieldDefn.SetSubType(eSubType); + if( bUnknownType) + { + poCurLayer->oSetFieldsOfUnknownType.insert( + poCurLayer->GetLayerDefn()->GetFieldCount()); + } if( poCurLayer->CreateField(&oFieldDefn) != OGRERR_NONE ) { return; @@ -973,17 +960,13 @@ void OGRXLSXDataSource::endElementRow(CPL_UNUSED const char *pszNameIn) OGRFieldDefn* poFieldDefn = poCurLayer->GetLayerDefn()->GetFieldDefn(static_cast(i)); const OGRFieldType eFieldType = poFieldDefn->GetType(); - if (eFieldType == OGRUnknownType) + auto oIter = poCurLayer->oSetFieldsOfUnknownType.find(static_cast(i)); + if (oIter != poCurLayer->oSetFieldsOfUnknownType.end() ) { - /* If the field type is unknown we have not encountered a value in the field yet so - * set the field type to this elements type */ - OGRFieldDefn oNewFieldDefn(poFieldDefn); - - oNewFieldDefn.SetType(eValType); - oNewFieldDefn.SetSubType(eValSubType); - poCurLayer->AlterFieldDefn(static_cast(i), &oNewFieldDefn, - ALTER_TYPE_FLAG); + poCurLayer->oSetFieldsOfUnknownType.erase(oIter); + poFieldDefn->SetType(eValType); + poFieldDefn->SetSubType(eValSubType); } else if (eFieldType == OFTDateTime && (eValType == OFTDate || eValType == OFTTime) ) diff --git a/gdal/port/GNUmakefile b/gdal/port/GNUmakefile index 165615398797..3cb86ddc8e75 100644 --- a/gdal/port/GNUmakefile +++ b/gdal/port/GNUmakefile @@ -33,7 +33,7 @@ OBJ = cpl_conv.o cpl_error.o cpl_string.o cplgetsymbol.o cplstringlist.o \ cpl_google_oauth2.o cpl_progress.o cpl_virtualmem.o cpl_worker_thread_pool.o \ cpl_vsil_crypt.o cpl_sha1.o cpl_sha256.o cpl_aws.o cpl_vsi_error.o cpl_cpu_features.o \ cpl_google_cloud.o cpl_azure.o cpl_alibaba_oss.o cpl_json_streaming_parser.o \ - cpl_json.o cpl_md5.o cpl_swift.o \ + cpl_json.o cpl_md5.o cpl_swift.o cpl_vsil_plugin.o \ cpl_vsil_hdfs.o cpl_userfaultfd.o ifeq ($(ODBC_SETTING),yes) diff --git a/gdal/port/cpl_http.cpp b/gdal/port/cpl_http.cpp index b8fb8ae3efbc..dad954a687a8 100644 --- a/gdal/port/cpl_http.cpp +++ b/gdal/port/cpl_http.cpp @@ -1626,6 +1626,11 @@ void *CPLHTTPSetOptions(void *pcurl, const char* pszURL, } #endif + // CURLOPT_SUPPRESS_CONNECT_HEADERS is defined in curl 7.54.0 or newer. +#if LIBCURL_VERSION_NUM >= 0x073600 + curl_easy_setopt(http_handle, CURLOPT_SUPPRESS_CONNECT_HEADERS, 1L); +#endif + // Enable following redirections. Requires libcurl 7.10.1 at least. curl_easy_setopt(http_handle, CURLOPT_FOLLOWLOCATION, 1 ); curl_easy_setopt(http_handle, CURLOPT_MAXREDIRS, 10 ); diff --git a/gdal/port/cpl_vsi.h b/gdal/port/cpl_vsi.h index 7fb08e424db0..58412fadc1d0 100644 --- a/gdal/port/cpl_vsi.h +++ b/gdal/port/cpl_vsi.h @@ -408,6 +408,150 @@ GByte CPL_DLL *VSIGetMemFileBuffer( const char *pszFilename, typedef size_t (*VSIWriteFunction)(const void* ptr, size_t size, size_t nmemb, FILE* stream); void CPL_DLL VSIStdoutSetRedirection( VSIWriteFunction pFct, FILE* stream ); +/** + * Return information about a handle. Optional (driver dependant) + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginStatCallback) ( void *pUserData, const char *pszFilename, VSIStatBufL *pStatBuf, int nFlags ); +/** + * Remove handle by name. Optional + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginUnlinkCallback) ( void *pUserData, const char *pszFilename ); +/** + * Rename handle. Optional + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginRenameCallback) ( void *pUserData, const char *oldpath, const char *newpath ); +/** + * Create Directory. Optional + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginMkdirCallback) ( void *pUserData, const char *pszDirname, long nMode ); +/** + * Delete Directory. Optional + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginRmdirCallback) ( void *pUserData, const char *pszDirname ); +/** + * List directory content. Optional + * @since GDAL 2.5 + */ +typedef char** (*VSIFilesystemPluginReadDirCallback) ( void *pUserData, const char *pszDirname, int nMaxFiles ); +/** + * Open a handle. Mandatory. Returns an opaque pointer that will be used in subsequent file I/O calls. + * Should return null and/or set errno if the handle does not exist or the access mode is incorrect. + * @since GDAL 2.5 + */ +typedef void* (*VSIFilesystemPluginOpenCallback) ( void *pUserData, const char *pszFilename, const char *pszAccess ); +/** + * Return current position in handle. Mandatory + * @since GDAL 2.5 + */ +typedef vsi_l_offset (*VSIFilesystemPluginTellCallback) ( void *pFile ); +/** + * Seek to position in handle. Mandatory except for write only handles + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginSeekCallback) ( void *pFile, vsi_l_offset nOffset, int nWhence ); +/** + * Read data from current position, returns the number of blocks correctly read. + * Mandatory except for write only handles + * @since GDAL 2.5 + */ +typedef size_t (*VSIFilesystemPluginReadCallback) ( void *pFile, void *pBuffer, size_t nSize, size_t nCount ); +/** + * Read from multiple offsets. Optional, will be replaced by multiple calls to Read() if not provided + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginReadMultiRangeCallback)( void *pFile, int nRanges, void ** ppData, + const vsi_l_offset* panOffsets, const size_t* panSizes ); +/** + * Get empty ranges. Optional + * @since GDAL 2.5 + */ +typedef VSIRangeStatus (*VSIFilesystemPluginGetRangeStatusCallback)( void *pFile, vsi_l_offset nOffset, vsi_l_offset nLength ); +/** + * Has end of file been reached. Mandatory? for read handles. + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginEofCallback) ( void *pFile ); +/** + * Write bytes at current offset. Mandatory for writable handles + * @since GDAL 2.5 + */ +typedef size_t (*VSIFilesystemPluginWriteCallback) ( void *pFile, const void *pBuffer, size_t nSize,size_t nCount); +/** + * Sync written bytes. Optional + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginFlushCallback) ( void *pFile ); +/** + * Truncate handle. Mandatory (driver dependant?) for write handles + */ +typedef int (*VSIFilesystemPluginTruncateCallback) ( void *pFile, vsi_l_offset nNewSize ); +/** + * Close file handle. Optional + * @since GDAL 2.5 + */ +typedef int (*VSIFilesystemPluginCloseCallback) ( void *pFile ); + +/** + * struct containing callbacks to used by the handler. + * (rw), (r), (w) or () at the end indicate wether the given callback is mandatory + * for reading and or writing handlers. A (?) indicates that the callback might + * be mandatory for certain drivers only. + * @since GDAL 2.5 + */ +typedef struct { + /** + * Optional opaque pointer passed back to filemanager callbacks (e.g. open, stat, rmdir) + */ + void *pUserData; + VSIFilesystemPluginStatCallback stat; /**< stat handle by name (rw)*/ + VSIFilesystemPluginUnlinkCallback unlink; /**< unlink handle by name ()*/ + VSIFilesystemPluginRenameCallback rename; /**< rename handle ()*/ + VSIFilesystemPluginMkdirCallback mkdir; /**< make directory ()*/ + VSIFilesystemPluginRmdirCallback rmdir; /**< remove directory ()*/ + VSIFilesystemPluginReadDirCallback read_dir; /**< list directory content (r?)*/ + VSIFilesystemPluginOpenCallback open; /**< open handle by name (rw) */ + VSIFilesystemPluginTellCallback tell; /**< get current position of handle (rw) */ + VSIFilesystemPluginSeekCallback seek; /**< set current position of handle (rw) */ + VSIFilesystemPluginReadCallback read; /**< read from current position (r) */ + VSIFilesystemPluginReadMultiRangeCallback read_multi_range; /**< read multiple blocks ()*/ + VSIFilesystemPluginGetRangeStatusCallback get_range_status; /**< get range status () */ + VSIFilesystemPluginEofCallback eof; /**< has end of file been reached (r?) */ + VSIFilesystemPluginWriteCallback write; /**< write bytes to current position (w) */ + VSIFilesystemPluginFlushCallback flush; /**< sync bytes (w) */ + VSIFilesystemPluginTruncateCallback truncate; /**< truncate handle (w?) */ + VSIFilesystemPluginCloseCallback close; /**< close handle (rw) */ +/* + Callbacks are defined as a struct allocated by a call to VSIAllocFilesystemPluginCallbacksStruct + in order to try to maintain ABI stability when eventually adding a new member. + Any callbacks added to this struct SHOULD be added to the END of this struct +*/ +} VSIFilesystemPluginCallbacksStruct; + +/** + * return a VSIFilesystemPluginCallbacksStruct to be populated at runtime with handler callbacks + * @since GDAL 2.5 + */ +VSIFilesystemPluginCallbacksStruct CPL_DLL *VSIAllocFilesystemPluginCallbacksStruct( void ); + +/** + * free resources allocated by VSIAllocFilesystemPluginCallbacksStruct + * @since GDAL 2.5 + */ +void CPL_DLL VSIFreeFilesystemPluginCallbacksStruct(VSIFilesystemPluginCallbacksStruct* poCb); + +/** + * register a handler on the given prefix. All IO on datasets opened with the filename /prefix/xxxxxx + * will go through these callbacks. + * pszPrefix must begin and end with a '/' + * @since GDAL 2.5 + */ +int CPL_DLL VSIInstallPluginHandler( const char* pszPrefix, const VSIFilesystemPluginCallbacksStruct* poCb); + /* ==================================================================== */ /* Time querying. */ /* ==================================================================== */ diff --git a/gdal/port/cpl_vsil_curl.cpp b/gdal/port/cpl_vsil_curl.cpp index cc001218874f..8e29298f228c 100644 --- a/gdal/port/cpl_vsil_curl.cpp +++ b/gdal/port/cpl_vsil_curl.cpp @@ -485,6 +485,10 @@ void VSICURLInitWriteFuncStruct( WriteFuncStruct *psStruct, psStruct->pfnReadCbk = pfnReadCbk; psStruct->pReadCbkUserData = pReadCbkUserData; psStruct->bInterrupted = false; + +#if LIBCURL_VERSION_NUM < 0x073600 + psStruct->bIsProxyConnectHeader = false; +#endif } /************************************************************************/ @@ -509,10 +513,31 @@ size_t VSICurlHandleWriteFunc( void *buffer, size_t count, char* pszLine = psStruct->pBuffer + psStruct->nSize; if( STARTS_WITH_CI(pszLine, "HTTP/") ) { - const char* pszSpace = strchr( - const_cast(pszLine), ' '); + char* pszSpace = strchr(pszLine, ' '); if( pszSpace ) + { psStruct->nHTTPCode = atoi(pszSpace + 1); + +#if LIBCURL_VERSION_NUM < 0x073600 + // Workaround to ignore extra HTTP response headers from + // proxies in older versions of curl. + // CURLOPT_SUPPRESS_CONNECT_HEADERS fixes this + if( psStruct->nHTTPCode >= 200 && + psStruct->nHTTPCode < 300 ) + { + pszSpace = strchr(pszSpace + 1, ' '); + if( pszSpace && + // This could be any string really, but we don't + // have an easy way to distinguish between proxies + // and upstream responses... + STARTS_WITH_CI( pszSpace + 1, + "Connection established") ) + { + psStruct->bIsProxyConnectHeader = true; + } + } +#endif + } } else if( STARTS_WITH_CI(pszLine, "Content-Length: ") ) { @@ -563,6 +588,12 @@ size_t VSICurlHandleWriteFunc( void *buffer, size_t count, psStruct->nHTTPCode == 302) ) return 0; } +#if LIBCURL_VERSION_NUM < 0x073600 + else if( psStruct->bIsProxyConnectHeader ) + { + psStruct->bIsProxyConnectHeader = false; + } +#endif else { psStruct->bIsInHeader = false; @@ -1184,14 +1215,14 @@ CPLString VSICurlHandle::GetRedirectURLIfValid(bool& bHasExpired) /* DownloadRegion() */ /************************************************************************/ -bool VSICurlHandle::DownloadRegion( const vsi_l_offset startOffset, - const int nBlocks ) +std::string VSICurlHandle::DownloadRegion( const vsi_l_offset startOffset, + const int nBlocks ) { if( bInterrupted && bStopOnInterruptUntilUninstall ) - return false; + return std::string(); if( oFileProp.eExists == EXIST_NO ) - return false; + return std::string(); CURLM* hCurlMultiHandle = poFS->GetCurlMultiHandleFor(m_pszURL); @@ -1276,7 +1307,7 @@ bool VSICurlHandle::DownloadRegion( const vsi_l_offset startOffset, CPLFree(sWriteFuncHeaderData.pBuffer); curl_easy_cleanup(hCurlHandle); - return false; + return std::string(); } long response_code = 0; @@ -1411,7 +1442,7 @@ bool VSICurlHandle::DownloadRegion( const vsi_l_offset startOffset, CPLFree(sWriteFuncData.pBuffer); CPLFree(sWriteFuncHeaderData.pBuffer); curl_easy_cleanup(hCurlHandle); - return false; + return std::string(); } if( !oFileProp.bHasComputedFileSize && sWriteFuncHeaderData.pBuffer ) @@ -1482,11 +1513,14 @@ bool VSICurlHandle::DownloadRegion( const vsi_l_offset startOffset, sWriteFuncData.pBuffer, sWriteFuncData.nSize); + std::string osRet; + osRet.assign(sWriteFuncData.pBuffer, sWriteFuncData.nSize); + CPLFree(sWriteFuncData.pBuffer); CPLFree(sWriteFuncHeaderData.pBuffer); curl_easy_cleanup(hCurlHandle); - return true; + return osRet; } /************************************************************************/ @@ -1567,8 +1601,13 @@ size_t VSICurlHandle::Read( void * const pBufferIn, size_t const nSize, const vsi_l_offset nOffsetToDownload = (iterOffset / DOWNLOAD_CHUNK_SIZE) * DOWNLOAD_CHUNK_SIZE; + std::string osRegion; std::shared_ptr psRegion = poFS->GetRegion(m_pszURL, nOffsetToDownload); - if( psRegion == nullptr ) + if( psRegion != nullptr ) + { + osRegion = *psRegion; + } + else { if( nOffsetToDownload == lastDownloadedOffset ) { @@ -1599,6 +1638,8 @@ size_t VSICurlHandle::Read( void * const pBufferIn, size_t const nSize, nBlocksToDownload = nMinBlocksToDownload; // Avoid reading already cached data. + // Note: this might get evicted if concurrent reads are done, but + // this should not cause bugs. Just missed optimization. for( int i = 1; i < nBlocksToDownload; i++ ) { if( poFS->GetRegion( @@ -1613,30 +1654,25 @@ size_t VSICurlHandle::Read( void * const pBufferIn, size_t const nSize, if( nBlocksToDownload > N_MAX_REGIONS ) nBlocksToDownload = N_MAX_REGIONS; - if( DownloadRegion(nOffsetToDownload, nBlocksToDownload) == false ) + osRegion = DownloadRegion(nOffsetToDownload, nBlocksToDownload); + if( osRegion.empty() ) { if( !bInterrupted ) bEOF = true; return 0; } - psRegion = poFS->GetRegion(m_pszURL, iterOffset); - } - if( psRegion == nullptr ) - { - bEOF = true; - return 0; } const int nToCopy = static_cast( std::min(static_cast(nBufferRequestSize), - psRegion->size() - + osRegion.size() - (iterOffset - nOffsetToDownload))); memcpy(pBuffer, - psRegion->data() + iterOffset - nOffsetToDownload, + osRegion.data() + iterOffset - nOffsetToDownload, nToCopy); pBuffer = static_cast(pBuffer) + nToCopy; iterOffset += nToCopy; nBufferRequestSize -= nToCopy; - if( psRegion->size() != static_cast(DOWNLOAD_CHUNK_SIZE) && + if( osRegion.size() < static_cast(DOWNLOAD_CHUNK_SIZE) && nBufferRequestSize != 0 ) { break; diff --git a/gdal/port/cpl_vsil_curl_class.h b/gdal/port/cpl_vsil_curl_class.h index 6ccf86214f2f..e606a0efd0eb 100644 --- a/gdal/port/cpl_vsil_curl_class.h +++ b/gdal/port/cpl_vsil_curl_class.h @@ -107,6 +107,13 @@ typedef struct VSICurlReadCbkFunc pfnReadCbk; void *pReadCbkUserData; bool bInterrupted; + +#if LIBCURL_VERSION_NUM < 0x073600 + // Workaround to ignore extra HTTP response headers from + // proxies in older versions of curl. + // CURLOPT_SUPPRESS_CONNECT_HEADERS fixes this + bool bIsProxyConnectHeader; +#endif } WriteFuncStruct; /************************************************************************/ @@ -297,7 +304,7 @@ class VSICurlHandle : public VSIVirtualHandle bool bEOF = false; - virtual bool DownloadRegion(vsi_l_offset startOffset, int nBlocks); + virtual std::string DownloadRegion(vsi_l_offset startOffset, int nBlocks); bool m_bUseHead = false; diff --git a/gdal/port/cpl_vsil_plugin.cpp b/gdal/port/cpl_vsil_plugin.cpp new file mode 100644 index 000000000000..f89ce7588cd7 --- /dev/null +++ b/gdal/port/cpl_vsil_plugin.cpp @@ -0,0 +1,356 @@ +/****************************************************************************** + * + * Project: CPL - Common Portability Library + * Purpose: Implement VSI large file api for plugins + * Author: Thomas Bonfort, thomas.bonfort@airbus.com + * + ****************************************************************************** + * Copyright (c) 2019, Thomas Bonfort + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + ****************************************************************************/ + +#include "cpl_port.h" +#include "cpl_vsil_plugin.h" + +//! @cond Doxygen_Suppress +#ifndef DOXYGEN_SKIP + +namespace cpl { + + +VSIPluginHandle::VSIPluginHandle( VSIPluginFilesystemHandler* poFSIn, + void *cbDataIn) : + poFS(poFSIn), + cbData(cbDataIn) +{ +} + + +VSIPluginHandle::~VSIPluginHandle() +{ + if (cbData) { + Close(); + } +} + + + +int VSIPluginHandle::Seek( vsi_l_offset nOffset, int nWhence ) +{ + return poFS->Seek(cbData,nOffset,nWhence); +} + + + +vsi_l_offset VSIPluginHandle::Tell() +{ + return poFS->Tell(cbData); +} + +size_t VSIPluginHandle::Read( void * const pBuffer, size_t const nSize, + size_t const nMemb ) +{ + return poFS->Read(cbData, pBuffer, nSize, nMemb); +} + +int VSIPluginHandle::Eof() +{ + return poFS->Eof(cbData); +} + +int VSIPluginHandle::Close() +{ + int ret = poFS->Close(cbData); + cbData = nullptr; + return ret; +} + +int VSIPluginHandle::ReadMultiRange( int nRanges, void ** ppData, const vsi_l_offset* panOffsets, const size_t* panSizes ) { + return poFS->ReadMultiRange(cbData,nRanges,ppData,panOffsets,panSizes); +} + +VSIRangeStatus VSIPluginHandle::GetRangeStatus( vsi_l_offset nOffset, vsi_l_offset nLength ) { + return poFS->GetRangeStatus(cbData,nOffset,nLength); +} + +size_t VSIPluginHandle::Write( const void *pBuffer, size_t nSize,size_t nCount) { + return poFS->Write(cbData,pBuffer,nSize,nCount); +} + +int VSIPluginHandle::Flush() { + return poFS->Flush(cbData); +} + +int VSIPluginHandle::Truncate( vsi_l_offset nNewSize ) { + return poFS->Truncate(cbData,nNewSize); +} + + +VSIPluginFilesystemHandler::VSIPluginFilesystemHandler( const char *pszPrefix, + const VSIFilesystemPluginCallbacksStruct *cbIn): + m_Prefix(pszPrefix), + m_cb(nullptr) +{ + m_cb = new VSIFilesystemPluginCallbacksStruct(*cbIn); +} + +VSIPluginFilesystemHandler::~VSIPluginFilesystemHandler() +{ + delete m_cb; +} + + + +VSIVirtualHandle* VSIPluginFilesystemHandler::Open( const char *pszFilename, + const char *pszAccess, + bool bSetError ) +{ + if( !IsValidFilename(pszFilename) ) + return nullptr; + void *cbData = m_cb->open(m_cb->pUserData, GetCallbackFilename(pszFilename), pszAccess); + if (cbData == nullptr) { + if (bSetError) { + VSIError(VSIE_FileError, "%s: %s", pszFilename, strerror(errno)); + } + return nullptr; + } + return new VSIPluginHandle(this, cbData); +} + +const char* VSIPluginFilesystemHandler::GetCallbackFilename(const char *pszFilename) { + return pszFilename + strlen(m_Prefix); +} + +bool VSIPluginFilesystemHandler::IsValidFilename(const char *pszFilename) { + if( !STARTS_WITH_CI(pszFilename, m_Prefix) ) + return false; + return true; +} + + +int VSIPluginFilesystemHandler::Stat( const char *pszFilename, + VSIStatBufL *pStatBuf, + int nFlags ) +{ + if( !IsValidFilename(pszFilename) ) { + errno = EBADF; + return -1; + } + + + memset(pStatBuf, 0, sizeof(VSIStatBufL)); + + int nRet = 0; + if ( m_cb->stat != nullptr ) { + nRet = m_cb->stat(m_cb->pUserData, GetCallbackFilename(pszFilename), pStatBuf, nFlags); + } else { + nRet = -1; + } + return nRet; +} + +int VSIPluginFilesystemHandler::Seek(void *pFile, vsi_l_offset nOffset, int nWhence) { + if (m_cb->seek != nullptr) { + return m_cb->seek(pFile,nOffset,nWhence); + } + CPLError(CE_Failure, CPLE_AppDefined, "Seek not implemented for %s plugin", m_Prefix); + return -1; +} + +vsi_l_offset VSIPluginFilesystemHandler::Tell(void *pFile) { + if (m_cb->tell != nullptr) { + return m_cb->tell(pFile); + } + CPLError(CE_Failure, CPLE_AppDefined, "Tell not implemented for %s plugin", m_Prefix); + return -1; +} + +size_t VSIPluginFilesystemHandler::Read(void *pFile, void *pBuffer, size_t nSize, size_t nCount) { + if (m_cb->read != nullptr) { + return m_cb->read(pFile, pBuffer, nSize, nCount); + } + CPLError(CE_Failure, CPLE_AppDefined, "Read not implemented for %s plugin", m_Prefix); + return -1; +} + +int VSIPluginFilesystemHandler::HasOptimizedReadMultiRange(const char* /*pszPath*/ ) { + if (m_cb->read_multi_range != nullptr) { + return TRUE; + } + return FALSE; +} + +VSIRangeStatus VSIPluginFilesystemHandler::GetRangeStatus( void *pFile, vsi_l_offset nOffset, vsi_l_offset nLength) { + if (m_cb->get_range_status != nullptr) { + return m_cb->get_range_status(pFile,nOffset,nLength); + } + return VSI_RANGE_STATUS_UNKNOWN; +} + +int VSIPluginFilesystemHandler::ReadMultiRange( void *pFile, int nRanges, void ** ppData, const vsi_l_offset* panOffsets, const size_t* panSizes ) { + if (m_cb->read_multi_range == nullptr) { + CPLError(CE_Failure, CPLE_AppDefined, "Read not implemented for %s plugin", m_Prefix); + return -1; + } + int iRange; + int nMergedRanges = 1; + for ( iRange=0; iRangeread_multi_range(pFile, nRanges, ppData, panOffsets, panSizes); + } + + vsi_l_offset *mOffsets = new vsi_l_offset[nMergedRanges]; + size_t *mSizes = new size_t[nMergedRanges]; + char **mData = new char*[nMergedRanges]; + + int curRange = 0; + mSizes[curRange] = panSizes[0]; + mOffsets[curRange] = panOffsets[0]; + for ( iRange=0; iRangeread_multi_range(pFile, nMergedRanges, reinterpret_cast(mData), mOffsets, mSizes); + + curRange = 0; + size_t curOffset = panSizes[0]; + memcpy(ppData[0],mData[0],panSizes[0]); + for ( iRange=0; iRangeeof != nullptr) { + return m_cb->eof(pFile); + } + CPLError(CE_Failure, CPLE_AppDefined, "Eof not implemented for %s plugin", m_Prefix); + return -1; +} + +int VSIPluginFilesystemHandler::Close(void *pFile) { + if (m_cb->close != nullptr) { + return m_cb->close(pFile); + } + CPLError(CE_Failure, CPLE_AppDefined, "Close not implemented for %s plugin", m_Prefix); + return -1; +} + +size_t VSIPluginFilesystemHandler::Write(void *pFile, const void *psBuffer, size_t nSize, size_t nCount) { + if (m_cb->write != nullptr) { + return m_cb->write(pFile,psBuffer,nSize,nCount); + } + CPLError(CE_Failure, CPLE_AppDefined, "Write not implemented for %s plugin", m_Prefix); + return -1; +} + +int VSIPluginFilesystemHandler::Flush(void *pFile) { + if (m_cb->flush != nullptr) { + return m_cb->flush(pFile); + } + CPLError(CE_Failure, CPLE_AppDefined, "Flush not implemented for %s plugin", m_Prefix); + return -1; +} + +int VSIPluginFilesystemHandler::Truncate(void *pFile, vsi_l_offset nNewSize) { + if (m_cb->truncate != nullptr) { + return m_cb->truncate(pFile, nNewSize); + } + CPLError(CE_Failure, CPLE_AppDefined, "Truncate not implemented for %s plugin", m_Prefix); + return -1; + +} + +char ** VSIPluginFilesystemHandler::ReadDirEx( const char * pszDirname, int nMaxFiles ) { + if( !IsValidFilename(pszDirname) ) + return nullptr; + if (m_cb->read_dir != nullptr) { + return m_cb->read_dir(m_cb->pUserData, GetCallbackFilename(pszDirname),nMaxFiles); + } + return nullptr; +} + +int VSIPluginFilesystemHandler::Unlink(const char *pszFilename) { + if( m_cb->unlink == nullptr || !IsValidFilename(pszFilename) ) + return -1; + return unlink(GetCallbackFilename(pszFilename)); +} +int VSIPluginFilesystemHandler::Rename(const char *oldpath, const char *newpath) { + if( m_cb->rename == nullptr || !IsValidFilename(oldpath) || !IsValidFilename(newpath) ) + return -1; + return m_cb->rename(m_cb->pUserData, GetCallbackFilename(oldpath), GetCallbackFilename(newpath)); +} +int VSIPluginFilesystemHandler::Mkdir(const char *pszDirname, long nMode) { + if( m_cb->mkdir == nullptr || !IsValidFilename(pszDirname) ) + return -1; + return m_cb->mkdir(m_cb->pUserData, GetCallbackFilename(pszDirname), nMode); +} +int VSIPluginFilesystemHandler::Rmdir(const char *pszDirname) { + if( m_cb->rmdir == nullptr || !IsValidFilename(pszDirname) ) + return -1; + return m_cb->rmdir(m_cb->pUserData, GetCallbackFilename(pszDirname)); +} +} // namespace cpl + +#endif //DOXYGEN_SKIP +//! @endcond + +int VSIInstallPluginHandler( const char* pszPrefix, const VSIFilesystemPluginCallbacksStruct *poCb) { + VSIFilesystemHandler* poHandler = new cpl::VSIPluginFilesystemHandler(pszPrefix, poCb); + //TODO: check pszPrefix starts and ends with a / + VSIFileManager::InstallHandler( pszPrefix, poHandler ); + return 0; +} + +VSIFilesystemPluginCallbacksStruct* VSIAllocFilesystemPluginCallbacksStruct( void ) { + return static_cast(VSI_CALLOC_VERBOSE(1, sizeof(VSIFilesystemPluginCallbacksStruct))); +} +void VSIFreeFilesystemPluginCallbacksStruct(VSIFilesystemPluginCallbacksStruct* poCb) { + CPLFree(poCb); +} diff --git a/gdal/port/cpl_vsil_plugin.h b/gdal/port/cpl_vsil_plugin.h new file mode 100644 index 000000000000..319076b2bd3f --- /dev/null +++ b/gdal/port/cpl_vsil_plugin.h @@ -0,0 +1,126 @@ +/****************************************************************************** + * + * Project: CPL - Common Portability Library + * Purpose: Declarations for vsi filesystem plugin handlers + * Author: Thomas Bonfort + * + ****************************************************************************** + * Copyright (c) 2019, Thomas Bonfort + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + ****************************************************************************/ + +#ifndef CPL_VSIL_PLUGIN_H_INCLUDED +#define CPL_VSIL_PLUGIN_H_INCLUDED + +#include "cpl_port.h" +#include "cpl_string.h" +#include "cpl_vsi.h" +#include "cpl_vsi_virtual.h" + +//! @cond Doxygen_Suppress + +namespace cpl { + +/************************************************************************/ +/* VSIPluginFilesystemHandler */ +/************************************************************************/ + +class VSIPluginHandle; + +class VSIPluginFilesystemHandler : public VSIFilesystemHandler +{ + CPL_DISALLOW_COPY_ASSIGN(VSIPluginFilesystemHandler) + +private: + const char* m_Prefix; + const VSIFilesystemPluginCallbacksStruct* m_cb; + +protected: + friend class VSIPluginHandle; + VSIPluginHandle* CreatePluginHandle(void *cbData); + const char* GetCallbackFilename(const char* pszFilename); + bool IsValidFilename(const char *pszFilename); + + vsi_l_offset Tell( void *pFile ); + int Seek( void *pFile, vsi_l_offset nOffset, int nWhence ); + size_t Read( void *pFile, void *pBuffer, size_t nSize, size_t nCount ); + int ReadMultiRange( void *pFile, int nRanges, void ** ppData, const vsi_l_offset* panOffsets, const size_t* panSizes ); + VSIRangeStatus GetRangeStatus( void *pFile, vsi_l_offset nOffset, vsi_l_offset nLength ); + int Eof( void *pFile ); + size_t Write( void *pFile, const void *pBuffer, size_t nSize,size_t nCount); + int Flush( void *pFile ); + int Truncate( void *pFile, vsi_l_offset nNewSize ); + int Close( void *pFile ); + +public: + VSIPluginFilesystemHandler( const char *pszPrefix, + const VSIFilesystemPluginCallbacksStruct *cb); + ~VSIPluginFilesystemHandler() override; + + VSIVirtualHandle *Open( const char *pszFilename, + const char *pszAccess, + bool bSetError ) override; + + int Stat ( const char *pszFilename, VSIStatBufL *pStatBuf, int nFlags ) override; + int Unlink ( const char * pszFilename ) override; + int Rename ( const char * oldpath, const char * /*newpath*/ ) override; + int Mkdir ( const char * pszDirname, long nMode ) override; + int Rmdir ( const char * pszDirname ) override; + char **ReadDir ( const char *pszDirname ) override + { return ReadDirEx(pszDirname, 0); } + char **ReadDirEx( const char * pszDirname, int nMaxFiles ) override; + int HasOptimizedReadMultiRange(const char* pszPath ) override; + +}; + +/************************************************************************/ +/* VSIPluginHandle */ +/************************************************************************/ + +class VSIPluginHandle : public VSIVirtualHandle +{ + CPL_DISALLOW_COPY_ASSIGN(VSIPluginHandle) + + protected: + VSIPluginFilesystemHandler* poFS; + void *cbData; + + public: + + VSIPluginHandle( VSIPluginFilesystemHandler* poFS, void *cbData); + ~VSIPluginHandle() override; + + vsi_l_offset Tell() override; + int Seek( vsi_l_offset nOffset, int nWhence ) override; + size_t Read( void *pBuffer, size_t nSize, size_t nCount ) override; + int ReadMultiRange( int nRanges, void ** ppData, const vsi_l_offset* panOffsets, const size_t* panSizes ) override; + VSIRangeStatus GetRangeStatus( vsi_l_offset nOffset, vsi_l_offset nLength ) override; + int Eof() override; + size_t Write( const void *pBuffer, size_t nSize,size_t nCount) override; + int Flush() override; + int Truncate( vsi_l_offset nNewSize ) override; + int Close() override; +}; + +} // namespace cpl + +//! @endcond + +#endif // CPL_VSIL_PLUGIN_H_INCLUDED diff --git a/gdal/port/cpl_vsil_webhdfs.cpp b/gdal/port/cpl_vsil_webhdfs.cpp index 07f0b968961b..4e467d57ec3b 100644 --- a/gdal/port/cpl_vsil_webhdfs.cpp +++ b/gdal/port/cpl_vsil_webhdfs.cpp @@ -108,7 +108,7 @@ class VSIWebHDFSHandle final : public VSICurlHandle CPLString m_osUsernameParam{}; CPLString m_osDelegationParam{}; - bool DownloadRegion(vsi_l_offset startOffset, int nBlocks) override; + std::string DownloadRegion(vsi_l_offset startOffset, int nBlocks) override; public: VSIWebHDFSHandle( VSIWebHDFSFSHandler* poFS, @@ -997,15 +997,15 @@ vsi_l_offset VSIWebHDFSHandle::GetFileSize( bool bSetError ) /* DownloadRegion() */ /************************************************************************/ -bool VSIWebHDFSHandle::DownloadRegion( const vsi_l_offset startOffset, - const int nBlocks ) +std::string VSIWebHDFSHandle::DownloadRegion( const vsi_l_offset startOffset, + const int nBlocks ) { if( bInterrupted && bStopOnInterruptUntilUninstall ) - return false; + return std::string(); poFS->GetCachedFileProp(m_pszURL, oFileProp); if( oFileProp.eExists == EXIST_NO ) - return false; + return std::string(); CURLM* hCurlMultiHandle = poFS->GetCurlMultiHandleFor(m_pszURL); @@ -1076,7 +1076,7 @@ bool VSIWebHDFSHandle::DownloadRegion( const vsi_l_offset startOffset, CPLFree(sWriteFuncData.pBuffer); curl_easy_cleanup(hCurlHandle); - return false; + return std::string(); } long response_code = 0; @@ -1147,7 +1147,7 @@ bool VSIWebHDFSHandle::DownloadRegion( const vsi_l_offset startOffset, } CPLFree(sWriteFuncData.pBuffer); curl_easy_cleanup(hCurlHandle); - return false; + return std::string(); } oFileProp.eExists = EXIST_YES; @@ -1157,10 +1157,13 @@ bool VSIWebHDFSHandle::DownloadRegion( const vsi_l_offset startOffset, sWriteFuncData.pBuffer, sWriteFuncData.nSize); + std::string osRet; + osRet.assign(sWriteFuncData.pBuffer, sWriteFuncData.nSize); + CPLFree(sWriteFuncData.pBuffer); curl_easy_cleanup(hCurlHandle); - return true; + return osRet; } diff --git a/gdal/port/makefile.vc b/gdal/port/makefile.vc index 75c9925aab8e..8ef16525e504 100644 --- a/gdal/port/makefile.vc +++ b/gdal/port/makefile.vc @@ -43,6 +43,7 @@ OBJ = cpl_conv.obj \ cpl_vsil_gs.obj \ cpl_vsil_az.obj \ cpl_vsil_oss.obj \ + cpl_vsil_plugin.obj \ cpl_vsil_swift.obj \ cpl_vsil_webhdfs.obj \ cpl_vsil_hdfs.obj \ diff --git a/gdal/swig/include/cpl.i b/gdal/swig/include/cpl.i index 57cc06e82793..ed33cc4893ed 100644 --- a/gdal/swig/include/cpl.i +++ b/gdal/swig/include/cpl.i @@ -176,6 +176,8 @@ void CPL_STDCALL PyCPLErrorHandler(CPLErr eErrClass, int err_no, const char* psz %rename (GetFileSystemOptions) VSIGetFileSystemOptions; %rename (SetConfigOption) CPLSetConfigOption; %rename (GetConfigOption) wrapper_CPLGetConfigOption; +%rename (SetThreadLocalConfigOption) CPLSetThreadLocalConfigOption; +%rename (GetThreadLocalConfigOption) wrapper_CPLGetThreadLocalConfigOption; %rename (CPLBinaryToHex) CPLBinaryToHex; %rename (CPLHexToBinary) CPLHexToBinary; %rename (FileFromMemBuffer) wrapper_VSIFileFromMemBuffer; @@ -434,12 +436,17 @@ void VSICloseDir(VSIDIR* dir); %apply Pointer NONNULL {const char * pszKey}; void CPLSetConfigOption( const char * pszKey, const char * pszValue ); +void CPLSetThreadLocalConfigOption( const char * pszKey, const char * pszValue ); %inline { const char *wrapper_CPLGetConfigOption( const char * pszKey, const char * pszDefault = NULL ) { return CPLGetConfigOption( pszKey, pszDefault ); } +const char *wrapper_CPLGetThreadLocalConfigOption( const char * pszKey, const char * pszDefault = NULL ) +{ + return CPLGetThreadLocalConfigOption( pszKey, pszDefault ); +} } %clear const char * pszKey; diff --git a/gdal/swig/include/perl/gdal_perl.i b/gdal/swig/include/perl/gdal_perl.i index 6f37a074b574..f3d4b2fd916a 100644 --- a/gdal/swig/include/perl/gdal_perl.i +++ b/gdal/swig/include/perl/gdal_perl.i @@ -143,8 +143,8 @@ use Geo::GDAL::Const; # Note that the 1/100000 digits may be used to create more than one # CPAN release from one GDAL release. -our $VERSION = '2.0403'; -our $GDAL_VERSION = '2.4.3'; +our $VERSION = '2.0404'; +our $GDAL_VERSION = '2.4.4'; =pod diff --git a/gdal/swig/include/perl/ogr_perl.i b/gdal/swig/include/perl/ogr_perl.i index fca234e89d5b..8dcb99f2c0d6 100644 --- a/gdal/swig/include/perl/ogr_perl.i +++ b/gdal/swig/include/perl/ogr_perl.i @@ -126,7 +126,7 @@ ALTERED_DESTROY(OGRGeometryShadow, OGRc, delete_Geometry) %perlcode %{ package Geo::OGR; -our $VERSION = '2.0403'; # this needs to be the same as that in gdal_perl.i +our $VERSION = '2.0404'; # this needs to be the same as that in gdal_perl.i Geo::GDAL->import(qw(:INTERNAL)); diff --git a/gdal/swig/python/README.rst b/gdal/swig/python/README.rst index c0a615157c0b..6f0e0fe0e15d 100644 --- a/gdal/swig/python/README.rst +++ b/gdal/swig/python/README.rst @@ -16,7 +16,7 @@ reference documentation, but the `GDAL API Tutorial`_ includes Python examples. Dependencies ------------ - * libgdal (2.4.3 or greater) and header files (gdal-devel) + * libgdal (2.4.4 or greater) and header files (gdal-devel) * numpy (1.0.0 or greater) and header files (numpy-devel) (not explicitly required, but many examples and utilities will not work without it) diff --git a/gdal/swig/python/extensions/gdal_wrap.cpp b/gdal/swig/python/extensions/gdal_wrap.cpp index 7a0d1ca6ec8f..78bd0e22c7fb 100644 --- a/gdal/swig/python/extensions/gdal_wrap.cpp +++ b/gdal/swig/python/extensions/gdal_wrap.cpp @@ -4142,6 +4142,10 @@ const char *wrapper_CPLGetConfigOption( const char * pszKey, const char * pszDef { return CPLGetConfigOption( pszKey, pszDefault ); } +const char *wrapper_CPLGetThreadLocalConfigOption( const char * pszKey, const char * pszDefault = NULL ) +{ + return CPLGetThreadLocalConfigOption( pszKey, pszDefault ); +} void wrapper_VSIFileFromMemBuffer( const char* utf8_path, GIntBig nBytes, const GByte *pabyData) @@ -9116,6 +9120,65 @@ SWIGINTERN PyObject *_wrap_SetConfigOption(PyObject *SWIGUNUSEDPARM(self), PyObj } +SWIGINTERN PyObject *_wrap_SetThreadLocalConfigOption(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; int bLocalUseExceptionsCode = bUseExceptions; + char *arg1 = (char *) 0 ; + char *arg2 = (char *) 0 ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"OO:SetThreadLocalConfigOption",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "SetThreadLocalConfigOption" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "SetThreadLocalConfigOption" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + { + if (!arg1) { + SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); + } + } + { + if ( bUseExceptions ) { + ClearErrorState(); + } + { + SWIG_PYTHON_THREAD_BEGIN_ALLOW; + CPLSetThreadLocalConfigOption((char const *)arg1,(char const *)arg2); + SWIG_PYTHON_THREAD_END_ALLOW; + } +#ifndef SED_HACKS + if ( bUseExceptions ) { + CPLErr eclass = CPLGetLastErrorType(); + if ( eclass == CE_Failure || eclass == CE_Fatal ) { + SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); + } + } +#endif + } + resultobj = SWIG_Py_Void(); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + if ( ReturnSame(bLocalUseExceptionsCode) ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { Py_XDECREF(resultobj); SWIG_Error( SWIG_RuntimeError, CPLGetLastErrorMsg() ); return NULL; } } + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + SWIGINTERN PyObject *_wrap_GetConfigOption(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int bLocalUseExceptionsCode = bUseExceptions; char *arg1 = (char *) 0 ; @@ -9178,6 +9241,68 @@ SWIGINTERN PyObject *_wrap_GetConfigOption(PyObject *SWIGUNUSEDPARM(self), PyObj } +SWIGINTERN PyObject *_wrap_GetThreadLocalConfigOption(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { + PyObject *resultobj = 0; int bLocalUseExceptionsCode = bUseExceptions; + char *arg1 = (char *) 0 ; + char *arg2 = (char *) NULL ; + int res1 ; + char *buf1 = 0 ; + int alloc1 = 0 ; + int res2 ; + char *buf2 = 0 ; + int alloc2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + char *result = 0 ; + + if (!PyArg_ParseTuple(args,(char *)"O|O:GetThreadLocalConfigOption",&obj0,&obj1)) SWIG_fail; + res1 = SWIG_AsCharPtrAndSize(obj0, &buf1, NULL, &alloc1); + if (!SWIG_IsOK(res1)) { + SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GetThreadLocalConfigOption" "', argument " "1"" of type '" "char const *""'"); + } + arg1 = reinterpret_cast< char * >(buf1); + if (obj1) { + res2 = SWIG_AsCharPtrAndSize(obj1, &buf2, NULL, &alloc2); + if (!SWIG_IsOK(res2)) { + SWIG_exception_fail(SWIG_ArgError(res2), "in method '" "GetThreadLocalConfigOption" "', argument " "2"" of type '" "char const *""'"); + } + arg2 = reinterpret_cast< char * >(buf2); + } + { + if (!arg1) { + SWIG_exception(SWIG_ValueError,"Received a NULL pointer."); + } + } + { + if ( bUseExceptions ) { + ClearErrorState(); + } + { + SWIG_PYTHON_THREAD_BEGIN_ALLOW; + result = (char *)wrapper_CPLGetThreadLocalConfigOption((char const *)arg1,(char const *)arg2); + SWIG_PYTHON_THREAD_END_ALLOW; + } +#ifndef SED_HACKS + if ( bUseExceptions ) { + CPLErr eclass = CPLGetLastErrorType(); + if ( eclass == CE_Failure || eclass == CE_Fatal ) { + SWIG_exception( SWIG_RuntimeError, CPLGetLastErrorMsg() ); + } + } +#endif + } + resultobj = SWIG_FromCharPtr((const char *)result); + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + if ( ReturnSame(bLocalUseExceptionsCode) ) { CPLErr eclass = CPLGetLastErrorType(); if ( eclass == CE_Failure || eclass == CE_Fatal ) { Py_XDECREF(resultobj); SWIG_Error( SWIG_RuntimeError, CPLGetLastErrorMsg() ); return NULL; } } + return resultobj; +fail: + if (alloc1 == SWIG_NEWOBJ) delete[] buf1; + if (alloc2 == SWIG_NEWOBJ) delete[] buf2; + return NULL; +} + + SWIGINTERN PyObject *_wrap_CPLBinaryToHex(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *resultobj = 0; int bLocalUseExceptionsCode = bUseExceptions; int arg1 ; @@ -35368,7 +35493,9 @@ static PyMethodDef SwigMethods[] = { { (char *)"GetNextDirEntry", _wrap_GetNextDirEntry, METH_VARARGS, (char *)"GetNextDirEntry(VSIDIR * dir) -> DirEntry"}, { (char *)"CloseDir", _wrap_CloseDir, METH_VARARGS, (char *)"CloseDir(VSIDIR * dir)"}, { (char *)"SetConfigOption", _wrap_SetConfigOption, METH_VARARGS, (char *)"SetConfigOption(char const * pszKey, char const * pszValue)"}, + { (char *)"SetThreadLocalConfigOption", _wrap_SetThreadLocalConfigOption, METH_VARARGS, (char *)"SetThreadLocalConfigOption(char const * pszKey, char const * pszValue)"}, { (char *)"GetConfigOption", _wrap_GetConfigOption, METH_VARARGS, (char *)"GetConfigOption(char const * pszKey, char const * pszDefault=None) -> char const *"}, + { (char *)"GetThreadLocalConfigOption", _wrap_GetThreadLocalConfigOption, METH_VARARGS, (char *)"GetThreadLocalConfigOption(char const * pszKey, char const * pszDefault=None) -> char const *"}, { (char *)"CPLBinaryToHex", _wrap_CPLBinaryToHex, METH_VARARGS, (char *)"CPLBinaryToHex(int nBytes) -> retStringAndCPLFree *"}, { (char *)"CPLHexToBinary", _wrap_CPLHexToBinary, METH_VARARGS, (char *)"CPLHexToBinary(char const * pszHex, int * pnBytes) -> GByte *"}, { (char *)"FileFromMemBuffer", _wrap_FileFromMemBuffer, METH_VARARGS, (char *)"FileFromMemBuffer(char const * utf8_path, GIntBig nBytes)"}, diff --git a/gdal/swig/python/osgeo/gdal.py b/gdal/swig/python/osgeo/gdal.py index cd4b8361c9c9..6b45720d1966 100644 --- a/gdal/swig/python/osgeo/gdal.py +++ b/gdal/swig/python/osgeo/gdal.py @@ -1460,10 +1460,18 @@ def SetConfigOption(*args): """SetConfigOption(char const * pszKey, char const * pszValue)""" return _gdal.SetConfigOption(*args) +def SetThreadLocalConfigOption(*args): + """SetThreadLocalConfigOption(char const * pszKey, char const * pszValue)""" + return _gdal.SetThreadLocalConfigOption(*args) + def GetConfigOption(*args): """GetConfigOption(char const * pszKey, char const * pszDefault=None) -> char const *""" return _gdal.GetConfigOption(*args) +def GetThreadLocalConfigOption(*args): + """GetThreadLocalConfigOption(char const * pszKey, char const * pszDefault=None) -> char const *""" + return _gdal.GetThreadLocalConfigOption(*args) + def CPLBinaryToHex(*args): """CPLBinaryToHex(int nBytes) -> retStringAndCPLFree *""" return _gdal.CPLBinaryToHex(*args) diff --git a/gdal/swig/python/scripts/gdal2tiles.py b/gdal/swig/python/scripts/gdal2tiles.py index dd169c3b5e8f..861f973eb259 100755 --- a/gdal/swig/python/scripts/gdal2tiles.py +++ b/gdal/swig/python/scripts/gdal2tiles.py @@ -484,6 +484,13 @@ def exit_with_error(message, details=""): sys.exit(2) +def set_cache_max(cache_in_bytes): + # We set the maximum using `SetCacheMax` and `GDAL_CACHEMAX` to support both fork and spawn as multiprocessing start methods. + # https://github.com/OSGeo/gdal/pull/2112 + os.environ['GDAL_CACHEMAX'] = '%d' % int(cache_in_bytes / 1024 / 1024) + gdal.SetCacheMax(cache_in_bytes) + + def generate_kml(tx, ty, tz, tileext, tile_size, tileswne, options, children=None, **args): """ Template for the KML. Returns filled string. @@ -2867,8 +2874,10 @@ def single_threaded_tiling(input_file, output_folder, options): def multi_threaded_tiling(input_file, output_folder, options): nb_processes = options.nb_processes or 1 - # Make sure that all processes do not consume more than GDAL_CACHEMAX - os.environ['GDAL_CACHEMAX'] = '%d' % int(gdal.GetCacheMax() / nb_processes) + # Make sure that all processes do not consume more than `gdal.GetCacheMax()` + gdal_cache_max = gdal.GetCacheMax() + gdal_cache_max_per_process = max(1024 * 1024, math.floor(gdal_cache_max / nb_processes)) + set_cache_max(gdal_cache_max_per_process) (conf_receiver, conf_sender) = Pipe(False) @@ -2904,6 +2913,9 @@ def multi_threaded_tiling(input_file, output_folder, options): if not options.verbose and not options.quiet: p.join() # Traces done + # Set the maximum cache back to the original value + set_cache_max(gdal_cache_max) + create_overview_tiles(conf, output_folder, options) shutil.rmtree(os.path.dirname(conf.src_file)) diff --git a/gdal/swig/python/scripts/gdal_calc.py b/gdal/swig/python/scripts/gdal_calc.py index 1d9b5d9a9431..e75f5c34a664 100755 --- a/gdal/swig/python/scripts/gdal_calc.py +++ b/gdal/swig/python/scripts/gdal_calc.py @@ -219,6 +219,8 @@ def doit(opts, args): else: myOutType = opts.type + numpyOutType = gdalnumeric.codes[gdal.GetDataTypeByName(myOutType)] + # create file myOutDrv = gdal.GetDriverByName(opts.format) myOut = myOutDrv.Create( @@ -328,6 +330,9 @@ def doit(opts, args): xoff=myX, yoff=myY, win_xsize=nXValid, win_ysize=nYValid) + if numpyOutType != myval.dtype: + myval = myval.astype(numpyOutType) + # fill in nodata values if myNDV[i] is not None: if myNDVs is None: diff --git a/gdal/swig/python/setup.py b/gdal/swig/python/setup.py index 835b8179db7d..5d3c204e10a8 100644 --- a/gdal/swig/python/setup.py +++ b/gdal/swig/python/setup.py @@ -7,7 +7,7 @@ # Howard Butler hobu.inc@gmail.com -gdal_version = '2.4.3' +gdal_version = '2.4.4' import sys import os